This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<BaseLayerLuminance Value="(float?)0.15"> | |
<FluentCard BackReference="@context"> | |
<div class="contents"> | |
Dark | |
<FluentButton Appearance="Appearance.Accent">Accent</FluentButton> | |
<FluentButton Appearance="Appearance.Stealth">Stealth</FluentButton> | |
<FluentButton Appearance="Appearance.Outline">Outline</FluentButton> | |
<FluentButton Appearance="Appearance.Lightweight">Lightweight</FluentButton> | |
</div> | |
</FluentCard> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const addressTemplate = html<Address>` | |
<span>${x => x.country}</span> | |
`; | |
@renderWith(addressTemplate) | |
class Address { | |
@observable country = 'USA'; | |
} | |
class Person { |