From 929f98b1d9a548ba745af5c0792217f75f5fac50 Mon Sep 17 00:00:00 2001 From: miguel-merlin Date: Wed, 14 Feb 2024 01:59:43 -0500 Subject: [PATCH] file structure: Changed app.tsx to /app --- src/{ => app}/App.tsx | 0 src/index.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{ => app}/App.tsx (100%) diff --git a/src/App.tsx b/src/app/App.tsx similarity index 100% rename from src/App.tsx rename to src/app/App.tsx diff --git a/src/index.tsx b/src/index.tsx index c04b2a9..e9d7f44 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,6 +1,6 @@ import React from 'react' import ReactDOM from 'react-dom/client' -import App from './App' +import App from './app/App' import reportWebVitals from './reportWebVitals' import { ChakraProvider } from '@chakra-ui/react'