mirror of
https://github.com/Priler/jarvis.git
synced 2026-06-03 02:49:46 +00:00
12 lines
249 B
Svelte
12 lines
249 B
Svelte
<!-- _layout.svelte -->
|
|
<script>
|
|
import { Container } from '@svelteuidev/core'
|
|
import Header from '@/components/Header.svelte'
|
|
</script>
|
|
|
|
<Container fluid id="wrapper">
|
|
<Header />
|
|
<main>
|
|
<slot></slot>
|
|
</main>
|
|
</Container> |