tasko-frontend/pages/index.js

12 lines
156 B
JavaScript
Raw Normal View History

2020-01-13 12:54:17 +01:00
import "../style.css"
import Link from 'next/link';
const Index = () => (
<div>
<p>Hello Next.js</p>
</div>
);
export default Index;