Files
sanasto-app/components/pages/Home.jsx
Max Lynch 8b2df11c87 Shell
2020-12-20 23:02:27 -06:00

15 lines
261 B
JavaScript

import { homeItems } from "../../data";
import PostCard from "../Card";
import Content from "../Content";
const Home = () => {
return (
<Content>
{homeItems.map(i => (
<PostCard {...i} />
))}
</Content>
)
}
export default Home;