0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed naming of boilerplate stories

refs https://github.com/TryGhost/Team/issues/3151

- updates boilerplate story file to use standard .tsx extension
This commit is contained in:
Rishabh 2023-05-19 21:26:52 +05:30
parent a588ace346
commit 6e5e61d7cf

View file

@ -1,3 +1,8 @@
/**
* This is a boilerplate story as an example of how to structure stories
*/
/**
import type {Meta, StoryObj} from '@storybook/react';
import Component from './Component';
@ -13,4 +18,5 @@ type Story = StoryObj<typeof Component>;
export const Default: Story = {
args: {}
};
};
*/