mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-22 00:35:12 +02:00
19 lines
269 B
Svelte
19 lines
269 B
Svelte
<script>
|
|
import Container from '../../../Container.svelte';
|
|
</script>
|
|
|
|
<Container
|
|
navigationActions={{
|
|
left: () => {
|
|
console.log('Not called?');
|
|
history.back();
|
|
return false;
|
|
}
|
|
}}
|
|
focusOnMount
|
|
trapFocus
|
|
class="fixed inset-0"
|
|
>
|
|
<slot />
|
|
</Container>
|