Skip to content

Commit

Permalink
Add story for UserProfile
Browse files Browse the repository at this point in the history
  • Loading branch information
marks-sre-is committed Aug 17, 2023
1 parent 296f472 commit 85f33f7
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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<typeof UserProfile>;

export const Default: ComponentStory<typeof UserProfile> = (args) => {
return <UserProfile />;
};

0 comments on commit 85f33f7

Please sign in to comment.