chore: rename temp_files.tsx to fix case sensitivity issue on GitHub

This commit is contained in:
Pablo Lara
2024-07-09 13:42:45 +02:00
parent 4beff6e62f
commit d80622ca69
3 changed files with 0 additions and 14 deletions
-14
View File
@@ -1,14 +0,0 @@
"use client";
import { Button } from "@nextui-org/react";
import { useState } from "react";
export const Counter = () => {
const [count, setCount] = useState(0);
return (
<Button radius="full" onPress={() => setCount(count + 1)}>
Count is {count}
</Button>
);
};