Skip to content

Commit c96d54f

Browse files
marjisoundJamieB-guarelra
committed
Add a basic hello world story for MainMediaGallery component
Co-authored-by: Jamie B <[email protected]> Co-authored-by: Ravi Lal <[email protected]>
1 parent 6c0f3e1 commit c96d54f

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import type { Meta, StoryObj } from '@storybook/react';
2+
import { MainMediaGallery } from './MainMediaGallery';
3+
4+
const meta = {
5+
title: 'Components/MainMediaGallery',
6+
component: MainMediaGallery,
7+
} satisfies Meta<typeof MainMediaGallery>;
8+
9+
export default meta;
10+
11+
type Story = StoryObj<typeof meta>;
12+
13+
export const FirstStory = {
14+
args: {},
15+
} satisfies Story;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export const MainMediaGallery = () => <>Hello world</>;

0 commit comments

Comments
 (0)