Skip to content

Commit

Permalink
Merge pull request #10 from TusharSSurve/test
Browse files Browse the repository at this point in the history
[test] : New Sections Added
  • Loading branch information
TusharSSurve authored Apr 21, 2024
2 parents 894353b + c41c00c commit 09957b9
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/About.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

const About = () => {
return (
<>
<h2>About</h2>
</>);
}
export default About;
9 changes: 9 additions & 0 deletions src/components/Contact.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

const Contact = () => {
return (
<>
<h2>Contact</h2>
</>);
}
export default Contact;
9 changes: 9 additions & 0 deletions src/components/Experience.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

const Experience = () => {
return (
<>
<h2>Experience</h2>
</>);
}
export default Experience;
9 changes: 9 additions & 0 deletions src/components/Work.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";

const Work = () => {
return (
<>
<h2>Work</h2>
</>);
}
export default Work;

0 comments on commit 09957b9

Please sign in to comment.