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