First REPL mock

This commit is contained in:
2021-12-14 23:08:18 +01:00
parent 1335d28dab
commit d6bd11f65e
5 changed files with 86 additions and 2 deletions

View File

@ -1,8 +1,9 @@
import type { NextPage } from 'next'
import REPLInput from '../components/REPLInput'
const Home: NextPage = () => {
return (
<>Hallu</>
<REPLInput />
)
}