ExamplesStylingStyled ComponentsStyled ComponentsIn this example we are using styled components to show how to implement a dark and light mode.index.htmlApp.tsxexport default function App() { const data: string = "world" return <h1>Hello {data}</h1> } Read-onlyOpen in StackblitzOpen in CodesandboxContext Menu