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,10 +0,0 @@
<script>
import Link from "./Link.svelte";
$: ref = null;
$: ref && console.log(ref);
</script>
<div>
<Link {...$$props} bind:ref>Link</Link>
</div>

View file

@ -1,14 +0,0 @@
import { withKnobs, boolean, text } from "@storybook/addon-knobs";
import Component from "./Link.Story.svelte";
export default { title: "Link", decorators: [withKnobs] };
export const Default = () => ({
Component,
props: {
href: text("The link href (href)", "#"),
inline: boolean("Use the in-line variant (inline)", false),
disabled: boolean("Disabled (disabled)", false),
visited: boolean("Allow visited styles", false),
},
});