1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-27 09:29:00 +02:00

Add basic components

This commit is contained in:
Kamran Ahmed
2019-08-24 18:44:29 +04:00
parent 8c77a26627
commit b351edfa20
4 changed files with 29 additions and 6 deletions

10
pages/home.js Normal file
View File

@@ -0,0 +1,10 @@
import Header from '../components/header';
export const Home = (props) => (
<div>
<Header />
<p>Hello Next.js</p>
</div>
);
export default Home;