mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-27 03:05:10 +02:00
temp reworked modals to use stackrouter, modals are now *chefs kiss*, removed compstack completely
12 lines
327 B
Svelte
12 lines
327 B
Svelte
<script>
|
|
import Dialog from '../Dialog/Dialog.svelte';
|
|
import TmdbIntegrationConnect from './TmdbIntegrationConnect.svelte';
|
|
import { useComponentStack } from '../StackRouter/stack-router.store';
|
|
|
|
const { close } = useComponentStack();
|
|
</script>
|
|
|
|
<Dialog>
|
|
<TmdbIntegrationConnect on:connected={() => close()} />
|
|
</Dialog>
|