diff --git a/src/app/page.tsx b/src/app/page.tsx index 0082d5c..effb64f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -4,7 +4,7 @@ import { css } from "@emotion/css" import React, { useState } from 'react' -const Page: React.FC = () => { +export default function Page() { const [a, setA] = useState(1) const [b, setB] = useState(0) const [c, setC] = useState(0) @@ -106,5 +106,3 @@ const Page: React.FC = () => { ) } - -export default Page \ No newline at end of file