From 7512e6e4097e6576dafd7a5a5bc76542a4dd9a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20F=C3=B6rtsch?= Date: Wed, 11 Mar 2026 10:36:28 +0100 Subject: [PATCH] rename App.tsx to app.tsx for consistent casing Co-Authored-By: Claude Opus 4.6 --- src/App.tsx | 35 ----------------------------------- src/app.tsx | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 35 deletions(-) delete mode 100644 src/App.tsx create mode 100644 src/app.tsx diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index 4ab3f96..0000000 --- a/src/App.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import { useState } from "react"; -import viteLogo from "/vite.svg"; -import reactLogo from "./assets/react.svg"; -import "./App.css"; - -function App() { - const [count, setCount] = useState(0); - - return ( - <> -
- - Vite logo - - - React logo - -
-

Vite + React

-
- -

- Edit src/App.tsx and save to test HMR -

-
-

- Click on the Vite and React logos to learn more -

- - ); -} - -export default App; diff --git a/src/app.tsx b/src/app.tsx new file mode 100644 index 0000000..279f6f0 --- /dev/null +++ b/src/app.tsx @@ -0,0 +1,14 @@ +import { RouterProvider, createRouter } from "@tanstack/react-router" +import { routeTree } from "./routeTree.gen" + +const router = createRouter({ routeTree }) + +declare module "@tanstack/react-router" { + interface Register { + router: typeof router + } +} + +export function App() { + return +}