mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
address Tom's feedback
This commit is contained in:
parent
f20ed05d4b
commit
4738c4e3f4
@ -8,7 +8,7 @@ export default {
|
||||
component: App
|
||||
};
|
||||
|
||||
const Template = (_args, { argTypes }) => ({
|
||||
const Template = (args, { argTypes }) => ({
|
||||
props: Object.keys(argTypes),
|
||||
components: { App },
|
||||
template: "<App />"
|
||||
|
@ -3,7 +3,9 @@
|
||||
|
||||
import Button from './Button';
|
||||
|
||||
export default { title: 'Components/Button' };
|
||||
export default {
|
||||
title: 'Components/Button'
|
||||
};
|
||||
|
||||
export const Primary = () => ({
|
||||
components: { Button },
|
||||
|
@ -38,7 +38,7 @@ When you are building screens in this way, it is typical that the inputs of a co
|
||||
paths={[
|
||||
'react/simple-page-implementation.js.mdx',
|
||||
'react/simple-page-implementation.ts.mdx',
|
||||
'vue/simple-page-implementation.js.mdx'
|
||||
'vue/simple-page-implementation.vue.mdx'
|
||||
]}
|
||||
/>
|
||||
|
||||
|
@ -26,7 +26,7 @@ This is extremely useful, but it can be further expanded. Additional information
|
||||
'react/button-component-with-proptypes.js.mdx',
|
||||
'react/button-component-with-proptypes.ts.mdx',
|
||||
'angular/button-component-with-proptypes.ts.mdx',
|
||||
'vue/button-component-with-proptypes.js.mdx'
|
||||
'vue/button-component-with-proptypes.vue.mdx'
|
||||
]}
|
||||
/>
|
||||
|
||||
@ -125,7 +125,7 @@ Looking at the following component:
|
||||
'react/button-implementation.js.mdx',
|
||||
'react/button-implementation.ts.mdx',
|
||||
'angular/button-implementation.ts.mdx',
|
||||
'vue/button-implementation.js.mdx'
|
||||
'vue/button-implementation.vue.mdx'
|
||||
]}
|
||||
/>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user