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