import globalThis from 'global';
const MyButton = globalThis.Components.Button;
export default {
component: {},
};
export const Render = () => ({
render: (h) => h('div', ['renders a div with some text in it..']),
});
export const RenderComponent = () => ({
render(h) {
return h(MyButton, { props: { color: 'pink', children: 'renders component: MyButton' } });
},
});
export const Template = () => ({
template: `
A template
rendered in vue in storybook
`,
});
export const TemplateComponent = () => ({
components: { MyButton },
template: '',
});
export const TemplateMethods = () => ({
components: { MyButton },
template: `
Clicking the button will navigate to another story using the 'addon-links'
`,
methods: {
action: () => {},
},
});
// FIXME: test JSX?
// export const JSX = () => ({
// components: { MyButton },
// render() {
// // eslint-disable-next-line react/react-in-jsx-scope, react/no-children-prop
// return ;
// },
// });
export const PreRegisteredComponent = () => ({
/* By pre-registering component in preview.js,
* the need to register all components with each story is removed.
* You'll only need the template */
template: `
This component was pre-registered in .storybook/preview.js
`,
});