frontpage/pages/index.tsx
2021-12-14 22:47:12 +01:00

11 lines
170 B
TypeScript

import type { NextPage } from 'next'
import REPLInput from '../components/REPLInput'
const Home: NextPage = () => {
return (
<>Hallu</>
)
}
export default Home