Remove counter.tsx from initial installation

master
TZGyn 2 years ago
parent dadeaf484b
commit 2590942529
Signed by: TZGyn
GPG Key ID: 122EAF77AE81FD4A

@ -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 (
<Button radius="full" onPress={() => setCount(count + 1)}>
Count is {count}
</Button>
);
};
Loading…
Cancel
Save