This commit is contained in:
2021-12-14 23:45:00 +01:00
parent d6bd11f65e
commit 92e32e0674
5 changed files with 19 additions and 19 deletions

View File

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