mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
21 lines
360 B
JavaScript
21 lines
360 B
JavaScript
import m from 'mithril';
|
|
|
|
import { Header } from './Header';
|
|
|
|
export default {
|
|
title: 'Example/Header',
|
|
component: Header,
|
|
};
|
|
|
|
const Template = ({ label, ...args }) => ({
|
|
view: () => m(Header, args, label),
|
|
});
|
|
|
|
export const LoggedIn = Template.bind({});
|
|
LoggedIn.args = {
|
|
user: {},
|
|
};
|
|
|
|
export const LoggedOut = Template.bind({});
|
|
LoggedOut.args = {};
|