13 lines
190 B
Svelte
13 lines
190 B
Svelte
<script>
|
|
let { children } = $props();
|
|
</script>
|
|
|
|
<div class="h-full text-white">{@render children()}</div>
|
|
|
|
<style>
|
|
@import 'tailwindcss';
|
|
|
|
:root {
|
|
background-color: black;
|
|
}
|
|
</style>
|