dashboard/frontend/src/layouts/TranscriptViewLayout.svelte
2022-08-09 15:29:12 +01:00

20 lines
397 B
Svelte

<Head/>
<NotifyModal/>
<Route {currentRoute} {params}/>
<style>
body {
padding: 0 !important;
overflow-y: clip;
}
</style>
<script>
export let currentRoute;
export let params = {};
import Head from '../includes/Head.svelte'
import NotifyModal from '../includes/NotifyModal.svelte'
import {Route} from 'svelte-router-spa'
</script>