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