From ec9a51c820fdf9c0c29e675fe3663fb0cbfddf3d Mon Sep 17 00:00:00 2001 From: Alan Alickovic Date: Sat, 11 May 2024 09:28:48 +0200 Subject: [PATCH] fix app file case --- src/{App.tsx => app.tsx} | 0 src/main.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{App.tsx => app.tsx} (100%) diff --git a/src/App.tsx b/src/app.tsx similarity index 100% rename from src/App.tsx rename to src/app.tsx diff --git a/src/main.tsx b/src/main.tsx index 84a424e5..3105f68b 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -2,7 +2,7 @@ import * as React from 'react'; import { createRoot } from 'react-dom/client'; import './index.css'; -import App from './App'; +import App from './app'; import { enableMocking } from './testing/mocks'; const root = document.getElementById('root');