fix: change component name

This commit is contained in:
Takeshi Kimata
2024-06-22 22:56:32 +09:00
parent c652502277
commit 1295ced676

View File

@@ -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>
);
};