file: create CreatePost and home pages

This commit is contained in:
Leon Xu
2023-01-23 16:03:13 -08:00
parent 88bbf7f8b4
commit 95926fdab1
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
import React from "react";
const CreatePost = () => {
return <div>CreatePost</div>;
};
export default CreatePost;
+7
View File
@@ -0,0 +1,7 @@
import React from "react";
const Home = () => {
return <div>Home</div>;
};
export default Home;