/** @jsx m */ import m from 'mithril'; const Main = { view: vnode => (
{vnode.children}
), }; const Title = { view: vnode =>

{vnode.children}

, }; const Note = { view: vnode => (

{vnode.children}

), }; const InlineCode = { view: vnode => ( {vnode.children} ), }; const Link = { view: vnode => ( {vnode.children} ), }; const NavButton = { view: vnode => ( ), }; const Welcome = { view: vnode => (
Welcome to storybook

This is a UI component dev environment for your app.

We've added some basic stories inside the src/stories directory.
A story is a single state of one or more UI components. You can have as many stories as you want.
(Basically a story is like a visual test case.)

See these sample stories for a component called Button .

Just like that, you can add your own components as stories.
You can also edit those components and see changes right away.
(Try editing the Button stories located at{' '} src/stories/index.js.)

Usually we create stories with smaller UI components in the app.
Have a look at the{' '} Writing Stories {' '} section in our documentation.

NOTE:
Have a look at the .storybook/webpack.config.js to add webpack loaders and plugins you are using in this project.
), }; export default Welcome;