Rename some exports

This commit is contained in:
2022-10-20 22:11:17 +02:00
parent e17bd61579
commit 5a8df80c36
3 changed files with 6 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ import type { ContentList } from "../lib/content/types";
import { useRouter } from "next/router";
import Rainbow from "../lib/colors";
const Home: NextPage<{ buildTime: string }> = ({ buildTime }) => {
const Terminal: NextPage<{ buildTime: string }> = ({ buildTime }) => {
const inputRef = useRef<HTMLInputElement>(null);
const { modalFunctions } = useModalFunctions();
const { setContents } = useCommands();
@@ -99,4 +99,4 @@ export const getStaticProps: GetStaticProps = async (_context) => {
};
};
export default Home;
export default Terminal;