Skip to content

Commit

Permalink
feat: my new block
Browse files Browse the repository at this point in the history
  • Loading branch information
pmelab committed Jan 26, 2024
1 parent 7c67494 commit 477f55e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { Meta, StoryObj } from '@storybook/react';

import { MyNewBlock } from './MyNewBlock';

export default {
component: MyNewBlock,
} satisfies Meta;

export const Test = {} satisfies StoryObj<typeof MyNewBlock>;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from 'react';

export function MyNewBlock() {
return <div className="border-red-200 border-4 p-4">Test</div>;
}

0 comments on commit 477f55e

Please sign in to comment.