Skip to content

Commit

Permalink
feat: Add default pages
Browse files Browse the repository at this point in the history
  • Loading branch information
gaori committed Sep 9, 2023
1 parent 2f5e34c commit d30c0e4
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/pages/Gallery.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const Gallery = () => {
return <div>Gallery</div>;
};

export default Gallery;
7 changes: 7 additions & 0 deletions src/pages/Home.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const Home = () => {
return <div>Home</div>;
};

export default Home;
7 changes: 7 additions & 0 deletions src/pages/Login.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const Login = () => {
return <div>Login</div>;
};

export default Login;
7 changes: 7 additions & 0 deletions src/pages/Signup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const Signup = () => {
return <div>Signup</div>;
};

export default Signup;
7 changes: 7 additions & 0 deletions src/pages/Wiki.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from 'react';

const Wiki = () => {
return <div>Wiki</div>;
};

export default Wiki;

0 comments on commit d30c0e4

Please sign in to comment.