🔧(demo) update demo app to ts config file, customize one token

Showcase a situation where we want to customize a component's design token.
This commit is contained in:
Nathan Vasse
2023-01-04 15:53:36 +01:00
committed by NathanVss
parent be1c9d000b
commit f48dac79c0
10 changed files with 31 additions and 19 deletions

View File

@@ -8,8 +8,8 @@ ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<div className="center">
<h1 className="test">Cunningham Demo.</h1>
<Button />
<h3>Primary color is {tokens.colors.primary}</h3>
<Button>World best button.</Button>
<h3>Primary color is {tokens.theme.colors.primary}</h3>
</div>
</React.StrictMode>
);