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

11 lines
178 B
TypeScript

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