diff --git a/src/app/page.tsx b/src/app/page.tsx index dc66abd..16bf162 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,7 +17,7 @@ import { SetStateAction, } from "react"; -export function SpeakerOnIcon() { +function SpeakerOnIcon() { return ( ( +function useStateWithRef( initialValue: TState, ): [TState, Dispatch>, MutableRefObject] { const [value, setValue] = useState(initialValue);