diff --git a/apps/webring/src/App.tsx b/apps/webring/src/App.tsx index e353a345a..0a0932f40 100644 --- a/apps/webring/src/App.tsx +++ b/apps/webring/src/App.tsx @@ -3,27 +3,79 @@ import { useState } from "react"; import Board from "./_components/board"; import List from "./_components/list"; import Nav from "./_components/nav"; +import { useIsMedium, useIsSmall } from "./_hooks/window"; function App() { const [hoveredMember, setHoveredMember] = useState(null); + const isSmall = useIsSmall(); + const isMedium = useIsMedium(); return (
-