From 02c0ad85ee0e91e6ed673d15f206dce65a95ee40 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sun, 16 Jul 2023 21:56:07 +0530 Subject: [PATCH] page.tsx - Remove extra exports --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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);