address Tom's feedback

This commit is contained in:
jonniebigodes 2021-01-13 16:28:43 +00:00
parent f20ed05d4b
commit 4738c4e3f4
7 changed files with 7 additions and 5 deletions

View File

@ -8,7 +8,7 @@ export default {
component: App component: App
}; };
const Template = (_args, { argTypes }) => ({ const Template = (args, { argTypes }) => ({
props: Object.keys(argTypes), props: Object.keys(argTypes),
components: { App }, components: { App },
template: "<App />" template: "<App />"

View File

@ -3,7 +3,9 @@
import Button from './Button'; import Button from './Button';
export default { title: 'Components/Button' }; export default {
title: 'Components/Button'
};
export const Primary = () => ({ export const Primary = () => ({
components: { Button }, components: { Button },

View File

@ -38,7 +38,7 @@ When you are building screens in this way, it is typical that the inputs of a co
paths={[ paths={[
'react/simple-page-implementation.js.mdx', 'react/simple-page-implementation.js.mdx',
'react/simple-page-implementation.ts.mdx', 'react/simple-page-implementation.ts.mdx',
'vue/simple-page-implementation.js.mdx' 'vue/simple-page-implementation.vue.mdx'
]} ]}
/> />

View File

@ -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.js.mdx',
'react/button-component-with-proptypes.ts.mdx', 'react/button-component-with-proptypes.ts.mdx',
'angular/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.js.mdx',
'react/button-implementation.ts.mdx', 'react/button-implementation.ts.mdx',
'angular/button-implementation.ts.mdx', 'angular/button-implementation.ts.mdx',
'vue/button-implementation.js.mdx' 'vue/button-implementation.vue.mdx'
]} ]}
/> />