From d80622ca6905375b427ccafdda60df74cfccde3e Mon Sep 17 00:00:00 2001 From: Pablo Lara Date: Tue, 9 Jul 2024 13:42:45 +0200 Subject: [PATCH] chore: rename temp_files.tsx to fix case sensitivity issue on GitHub --- components/counter.tsx | 14 -------------- components/{icons.tsx => temp_Icons.tsx} | 0 components/{navbar.tsx => temp_Navbar.tsx} | 0 3 files changed, 14 deletions(-) delete mode 100644 components/counter.tsx rename components/{icons.tsx => temp_Icons.tsx} (100%) rename components/{navbar.tsx => temp_Navbar.tsx} (100%) diff --git a/components/counter.tsx b/components/counter.tsx deleted file mode 100644 index 3fe2d87743..0000000000 --- a/components/counter.tsx +++ /dev/null @@ -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 ( - - ); -}; diff --git a/components/icons.tsx b/components/temp_Icons.tsx similarity index 100% rename from components/icons.tsx rename to components/temp_Icons.tsx diff --git a/components/navbar.tsx b/components/temp_Navbar.tsx similarity index 100% rename from components/navbar.tsx rename to components/temp_Navbar.tsx