chore(svelte): use prettier

This commit is contained in:
moklick
2023-06-06 15:46:19 +02:00
parent c4e98dd420
commit 84603bd966
34 changed files with 335 additions and 330 deletions
@@ -1,11 +1,6 @@
<script lang="ts">
import { writable } from 'svelte/store';
import SvelteFlow, {
Controls,
Background,
BackgroundVariant,
MiniMap,
} from '../../lib/index';
import SvelteFlow, { Controls, Background, BackgroundVariant, MiniMap } from '../../lib/index';
import Sidebar from './Sidebar.svelte';
const nodes = writable([
@@ -47,11 +42,7 @@
</script>
<main>
<SvelteFlow
{nodes}
{edges}
fitView
>
<SvelteFlow {nodes} {edges} fitView>
<Controls />
<Background variant={BackgroundVariant.Dots} />
<MiniMap />
@@ -64,4 +55,4 @@
height: 100%;
display: flex;
}
</style>
</style>