Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
feat: UserPreview to StoryBook (#1946)
Browse files Browse the repository at this point in the history
* 'Adds npm ci remove npm install, `links` README'

* feature: Adds UserPreview.stories.js
  • Loading branch information
dunnjacoba committed Oct 13, 2022
1 parent 9560b96 commit 019e5d9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions stories/components/user/UserPreview.stories.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import UserPreview from "../../../components/user/UserPreview";
import data from "../../../data/eddiejaoude.json";

export default {
component: UserPreview,
};

export const Basic = (args) => <UserPreview {...args} />;

Basic.args = {
profile: {
...data,
},
};

0 comments on commit 019e5d9

Please sign in to comment.