Run prettier over everything and fix some imports

This commit is contained in:
Ryan Gossiaux
2021-12-13 18:22:16 -08:00
parent 3bf974a654
commit 82b138f0ae
63 changed files with 3317 additions and 3319 deletions

View File

@@ -1,13 +1,13 @@
<script lang="ts">
import { useTabsContext } from "./TabGroup.svelte";
import { useTabsContext } from "./TabGroup.svelte";
let api = useTabsContext("TabList");
$: propsWeControl = {
role: "tablist",
"aria-orientation": $api.orientation,
};
let api = useTabsContext("TabList");
$: propsWeControl = {
role: "tablist",
"aria-orientation": $api.orientation,
};
</script>
<div {...{ ...$$restProps, ...propsWeControl }}>
<slot selectedIndex={$api.selectedIndex} />
<slot selectedIndex={$api.selectedIndex} />
</div>