From d5b4cfc3fa40280fd72aca842d93bc33383bd9c4 Mon Sep 17 00:00:00 2001 From: daishi Date: Mon, 22 Apr 2024 10:47:08 +0900 Subject: [PATCH] rename files --- examples/01_counter/src/{App.tsx => app.tsx} | 0 examples/01_counter/src/index.tsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename examples/01_counter/src/{App.tsx => app.tsx} (100%) diff --git a/examples/01_counter/src/App.tsx b/examples/01_counter/src/app.tsx similarity index 100% rename from examples/01_counter/src/App.tsx rename to examples/01_counter/src/app.tsx diff --git a/examples/01_counter/src/index.tsx b/examples/01_counter/src/index.tsx index 94c0438..10774d1 100644 --- a/examples/01_counter/src/index.tsx +++ b/examples/01_counter/src/index.tsx @@ -1,7 +1,7 @@ import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; -import App from './App'; +import App from './app'; const ele = document.getElementById('app'); if (ele) {