diff --git a/src/app/page.tsx b/src/app/page.tsx index 55e4218..92c1eab 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,31 +1,11 @@ -"use client"; -import { useEffect, useRef, useState } from "react"; -import dynamic from "next/dynamic"; -import type { DiceRollerHandle, RollResult } from "@/components/DiceRoller"; -import { Button } from "@/components/DiceSelector"; - -const DiceRoller = dynamic(() => import("@/components/DiceRoller"), { - ssr: false, -}); +import MenuButton from "@/components/MenuButton"; export default function Home() { - const rollerRef = useRef(null); - - const [savedRolls, setSavedRolls] = useState([]) - return ( - <> -
-
-
-
- {savedRolls.map((roll, i) => ( -
test
- ))} -
-
- - +
+
+ +
+
); }