From 25909425293e4effa62976af8e8ff54eae531d0f Mon Sep 17 00:00:00 2001 From: TZGyn Date: Tue, 12 Sep 2023 19:51:39 +0800 Subject: [PATCH] Remove counter.tsx from initial installation --- components/counter.tsx | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 components/counter.tsx diff --git a/components/counter.tsx b/components/counter.tsx deleted file mode 100644 index 90c4ea7..0000000 --- a/components/counter.tsx +++ /dev/null @@ -1,14 +0,0 @@ -"use client"; - -import { useState } from "react"; -import { Button } from "@nextui-org/button"; - -export const Counter = () => { - const [count, setCount] = useState(0); - - return ( - - ); -};