carbon-components-svelte/docs/src/routes/about.svelte
2020-05-09 07:19:03 -07:00

18 lines
333 B
Svelte

<script>
import {
Button,
Header,
HeaderNav,
HeaderNavItem
} from "carbon-components-svelte";
import { theme } from "../store";
</script>
<svelte:head>
<title>About</title>
</svelte:head>
<h1>About this site</h1>
{$theme}
<Button>Hello world</Button>
<p>This is the 'about' page. There's not much here.</p>