Merge pull request #21149 from mz8i/fix/react-snippets-args-error

Fix (docs): react using args snippets
This commit is contained in:
jonniebigodes 2023-02-17 23:37:11 +00:00 committed by GitHub
commit 07f5c59f77
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View File

@ -19,8 +19,10 @@ export default meta;
type Story = StoryObj<typeof meta>;
export const Primary: Story = {
backgroundColor: '#ff0',
label: 'Button',
args: {
backgroundColor: '#ff0',
label: 'Button',
},
};
export const Secondary: Story = {

View File

@ -18,8 +18,10 @@ export default meta;
type Story = StoryObj<typeof Button>;
export const Primary: Story = {
backgroundColor: '#ff0',
label: 'Button',
args: {
backgroundColor: '#ff0',
label: 'Button',
},
};
export const Secondary: Story = {