frontpage/pages/index.tsx

11 lines
173 B
TypeScript
Raw Normal View History

2021-11-30 23:48:54 +01:00
import type { NextPage } from 'next'
2021-12-14 23:08:18 +01:00
import REPLInput from '../components/REPLInput'
2021-11-30 23:48:54 +01:00
const Home: NextPage = () => {
return (
2021-12-14 23:08:18 +01:00
<REPLInput />
2021-11-30 23:48:54 +01:00
)
}
export default Home