Skip to content

Commit b7782ed

Browse files
committed
Add stories for ContactSection and ResumeSection
1 parent 96f5d56 commit b7782ed

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from "react";
2+
import ContactSection from "./ContactSection";
3+
4+
export default {
5+
title: "Contact/ContactSection",
6+
component: ContactSection
7+
};
8+
9+
export const Basic = (): JSX.Element => <ContactSection />;
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import React from "react";
2+
import ResumeSection from "./ResumeSection";
3+
4+
export default {
5+
title: "Resume/ResumeSection",
6+
component: ResumeSection
7+
};
8+
9+
export const Basic = (): JSX.Element => <ResumeSection />;

0 commit comments

Comments
 (0)