frontpage/pages/index.tsx
2021-12-14 23:28:13 +01:00

11 lines
173 B
TypeScript

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