This commit is contained in:
2021-12-16 01:03:54 +01:00
parent ec595650fd
commit 2403816461
7 changed files with 56 additions and 14 deletions

View File

@ -1,9 +1,12 @@
import type { NextPage } from "next";
import REPL from "../components/REPL";
import styles from "../styles/Home.module.css";
const Home: NextPage = () => {
return (
<REPL />
<div className={styles.container}>
<REPL />
</div>
);
};