diff --git a/src/stories/Button.jsx b/src/stories/Button.jsx
deleted file mode 100644
index d74b08c..0000000
--- a/src/stories/Button.jsx
+++ /dev/null
@@ -1,50 +0,0 @@
-import React from 'react'
-import PropTypes from 'prop-types'
-import './button.css'
-
-/**
- * Primary UI component for user interaction
- */
-export const Button = ({ primary, backgroundColor, size, label, ...props }) => {
- const mode = primary ? 'storybook-button--primary' : 'storybook-button--secondary'
- return (
-
- )
-}
-
-Button.propTypes = {
- /**
- * Is this the principal call to action on the page?
- */
- primary: PropTypes.bool,
- /**
- * What background color to use
- */
- backgroundColor: PropTypes.string,
- /**
- * How large should the button be?
- */
- size: PropTypes.oneOf(['small', 'medium', 'large']),
- /**
- * Button contents
- */
- label: PropTypes.string.isRequired,
- /**
- * Optional click handler
- */
- onClick: PropTypes.func,
-}
-
-Button.defaultProps = {
- backgroundColor: null,
- primary: false,
- size: 'medium',
- onClick: undefined,
-}
diff --git a/src/stories/Button.stories.jsx b/src/stories/Button.stories.jsx
deleted file mode 100644
index 2310b1e..0000000
--- a/src/stories/Button.stories.jsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import React from 'react'
-
-import { Button } from './Button'
-
-// More on default export: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
-export default {
- title: 'Example/Button',
- component: Button,
- // More on argTypes: https://storybook.js.org/docs/react/api/argtypes
- argTypes: {
- backgroundColor: { control: 'color' },
- },
-}
-
-// More on component templates: https://storybook.js.org/docs/react/writing-stories/introduction#using-args
-const Template = (args) =>
-
-export const Primary = Template.bind({})
-// More on args: https://storybook.js.org/docs/react/writing-stories/args
-Primary.args = {
- primary: true,
- label: 'Button',
-}
-
-export const Secondary = Template.bind({})
-Secondary.args = {
- label: 'Button',
-}
-
-export const Large = Template.bind({})
-Large.args = {
- size: 'large',
- label: 'Button',
-}
-
-export const Small = Template.bind({})
-Small.args = {
- size: 'small',
- label: 'Button',
-}
diff --git a/src/stories/Header.jsx b/src/stories/Header.jsx
deleted file mode 100644
index e2dccaf..0000000
--- a/src/stories/Header.jsx
+++ /dev/null
@@ -1,52 +0,0 @@
-import React from 'react'
-import PropTypes from 'prop-types'
-
-import { Button } from './Button'
-import './header.css'
-
-export const Header = ({ user, onLogin, onLogout, onCreateAccount }) => (
-
-
-
-
-
Acme
-
-
- {user ? (
-
- ) : (
- <>
-
-
- >
- )}
-
-
-
-)
-
-Header.propTypes = {
- user: PropTypes.shape({}),
- onLogin: PropTypes.func.isRequired,
- onLogout: PropTypes.func.isRequired,
- onCreateAccount: PropTypes.func.isRequired,
-}
-
-Header.defaultProps = {
- user: null,
-}
diff --git a/src/stories/Header.stories.jsx b/src/stories/Header.stories.jsx
deleted file mode 100644
index bd10a43..0000000
--- a/src/stories/Header.stories.jsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react'
-
-import { Header } from './Header'
-
-export default {
- title: 'Example/Header',
- component: Header,
-}
-
-const Template = (args) =>
-
-export const LoggedIn = Template.bind({})
-LoggedIn.args = {
- user: {},
-}
-
-export const LoggedOut = Template.bind({})
-LoggedOut.args = {}
diff --git a/src/stories/Introduction.stories.mdx b/src/stories/Introduction.stories.mdx
deleted file mode 100644
index 42c4a87..0000000
--- a/src/stories/Introduction.stories.mdx
+++ /dev/null
@@ -1,211 +0,0 @@
-import { Meta } from '@storybook/addon-docs';
-import Code from './assets/code-brackets.svg';
-import Colors from './assets/colors.svg';
-import Comments from './assets/comments.svg';
-import Direction from './assets/direction.svg';
-import Flow from './assets/flow.svg';
-import Plugin from './assets/plugin.svg';
-import Repo from './assets/repo.svg';
-import StackAlt from './assets/stackalt.svg';
-
-
-
-
-
-# Welcome to Storybook
-
-Storybook helps you build UI components in isolation from your app's business logic, data, and context.
-That makes it easy to develop hard-to-reach states. Save these UI states as **stories** to revisit during development, testing, or QA.
-
-Browse example stories now by navigating to them in the sidebar.
-View their code in the `src/stories` directory to learn how they work.
-We recommend building UIs with a [**component-driven**](https://componentdriven.org) process starting with atomic components and ending with pages.
-
-
- We recommend building UIs with a{' '}
-
- component-driven
- {' '}
- process starting with atomic components and ending with pages.
-
-
- Render pages with mock data. This makes it easy to build and review page states without
- needing to navigate to them in your app. Here are some handy patterns for managing page data
- in Storybook:
-
-
-
- Use a higher-level connected component. Storybook helps you compose such data from the
- "args" of child component stories
-
-
- Assemble data in the page component from your services. You can mock these services out
- using Storybook.
-