From 85f33f76240a18c3beff75ef27eaeac5a55749ed Mon Sep 17 00:00:00 2001 From: "Mark S. Shenouda" Date: Thu, 17 Aug 2023 19:51:40 +0300 Subject: [PATCH] Add story for UserProfile --- .../components/user-profile/UserProfile.stories.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cra-rxjs-styled-components/src/components/user-profile/UserProfile.stories.tsx diff --git a/cra-rxjs-styled-components/src/components/user-profile/UserProfile.stories.tsx b/cra-rxjs-styled-components/src/components/user-profile/UserProfile.stories.tsx new file mode 100644 index 000000000..3845d75a7 --- /dev/null +++ b/cra-rxjs-styled-components/src/components/user-profile/UserProfile.stories.tsx @@ -0,0 +1,12 @@ +import { ComponentStory, ComponentMeta } from '@storybook/react'; +import UserProfile from './UserProfile'; +import { useArgs } from '@storybook/client-api'; + +export default { + title: 'UserProfile', + component: UserProfile, +} as ComponentMeta; + +export const Default: ComponentStory = (args) => { + return ; +};