🔧(demo) update demo app to customize official tokens

Showcase how to customize an official design token.
This commit is contained in:
Nathan Vasse
2023-01-18 11:10:36 +01:00
committed by NathanVss
parent ba65b195b5
commit 3bb74d8594
4 changed files with 4 additions and 5 deletions

View File

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