We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3fa72d commit b29193dCopy full SHA for b29193d
src/app/home.tsx src/app/readme.tsxsrc/app/home.tsx renamed to src/app/readme.tsx
@@ -1,6 +1,6 @@
1
import { AppGitHubReadme } from "@/components/libresplit/AppGitHubReadme";
2
3
-export function Home() {
+export function Readme() {
4
return (
5
<div>
6
<AppGitHubReadme />
src/router.tsx
@@ -1,11 +1,11 @@
import { Converter } from "./app/converter";
-import { Home } from "./app/home";
+import { Readme } from "./app/readme";
import { Route, Routes } from "react-router";
export default function AppRouter() {
7
<Routes>
8
- <Route path="/" element={<Home />} />
+ <Route path="/" element={<Readme />} />
9
<Route path="/converter" element={<Converter />} />
10
</Routes>
11
);
0 commit comments