chore: remove storybook

This commit is contained in:
Eric Liu 2020-10-14 16:23:44 -07:00
commit 378fe06e03
116 changed files with 103 additions and 14249 deletions

View file

@ -1,14 +0,0 @@
<script>
export let story = undefined;
import { Tooltip } from "../Tooltip";
import FormLabel from "./FormLabel.svelte";
</script>
{#if story === 'tooltip'}
<FormLabel>
<Tooltip triggerText="Label">This is the content of the tooltip.</Tooltip>
</FormLabel>
{:else}
<FormLabel>Label</FormLabel>
{/if}

View file

@ -1,8 +0,0 @@
import { withKnobs } from "@storybook/addon-knobs";
import Component from "./FormLabel.Story.svelte";
export default { title: "FormLabel", decorators: [withKnobs] };
export const Default = () => ({ Component });
export const WithTooltip = () => ({ Component, props: { story: "tooltip" } });