New structure and more tabbing

This commit is contained in:
2021-12-15 18:56:32 +01:00
parent b99bdb366c
commit ced2559551
4 changed files with 26 additions and 14 deletions

View File

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