Skip to content

Commit 9b3787f

Browse files
committed
Create pages
1 parent a6723c1 commit 9b3787f

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

src/pages/Contact.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const Contact = () => {
2+
return (
3+
<div>
4+
<h1>This is the contact page</h1>
5+
</div>
6+
);
7+
};
8+
9+
export default Contact;

src/pages/Projects.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const Projects = () => {
2+
return (
3+
<div>
4+
<h1>This is the projects page</h1>
5+
</div>
6+
);
7+
};
8+
9+
export default Projects;

0 commit comments

Comments
 (0)