diff --git a/frontend/components/counter.tsx b/frontend/components/counter.tsx deleted file mode 100644 index b92ffdd..0000000 --- a/frontend/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 ( - - ); -};