More components

This commit is contained in:
Max Lynch
2020-12-20 21:53:23 -06:00
parent df54b5834b
commit fdef2842ef
56 changed files with 2000 additions and 222 deletions
+14
View File
@@ -0,0 +1,14 @@
import { homeItems } from "../../data";
import PostCard from "../Card";
const Home = () => {
return (
<div class="py-32">
{homeItems.map(i => (
<PostCard {...i} />
))}
</div>
)
}
export default Home;
+11
View File
@@ -0,0 +1,11 @@
import { homeItems } from "../../data";
const Profile = () => {
return (
<div class="py-32">
<h2>Profile</h2>
</div>
)
}
export default Profile;
+9
View File
@@ -0,0 +1,9 @@
const Settings = () => {
return (
<div class="py-32">
<h2>Settings</h2>
</div>
)
}
export default Settings;