mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
15 lines
386 B
Svelte
15 lines
386 B
Svelte
<script>
|
|
import { metatags, page } from "@roxi/routify";
|
|
import { Content, Grid } from "carbon-components-svelte";
|
|
import Navigation from "./_navigation.svelte";
|
|
import Theme from "../components/Theme.svelte";
|
|
</script>
|
|
|
|
<Theme persist theme="g10">
|
|
<Navigation />
|
|
<Content style="background: none; padding: 1rem">
|
|
<Grid>
|
|
<slot />
|
|
</Grid>
|
|
</Content>
|
|
</Theme>
|