Updated default boilerplate story in admin-x

refs https://github.com/TryGhost/Team/issues/3151
This commit is contained in:
Rishabh 2023-05-19 21:44:55 +05:30
parent 6e5e61d7cf
commit aa8f3ed5e2

View File

@ -1,11 +1,6 @@
/**
* This is a boilerplate story as an example of how to structure stories
*/
/**
import type {Meta, StoryObj} from '@storybook/react';
import Component from './Component';
const Component = () => null;
const meta = {
title: 'Group / Component',
@ -19,4 +14,3 @@ type Story = StoryObj<typeof Component>;
export const Default: Story = {
args: {}
};
*/