fix(Tabs): tabsProps for story

This commit is contained in:
josefaidt 2020-10-08 13:11:23 -05:00
commit f84931dba6

View file

@ -6,7 +6,7 @@
import Tabs from "./Tabs.svelte"; import Tabs from "./Tabs.svelte";
import TabsSkeleton from "./TabsSkeleton.svelte"; import TabsSkeleton from "./TabsSkeleton.svelte";
const { tabProps, ...tabsProps } = $$props; const { tabProps, tabsProps } = $$props;
$: selected = 0; $: selected = 0;
</script> </script>