We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59376eb commit 3df21beCopy full SHA for 3df21be
examples/shadcn/src/main.tsx
@@ -41,7 +41,7 @@ auth.authStateReady().then(() => {
41
<ThemeToggle />
42
<Routes>
43
<Route path="/" element={<App />} />
44
- <Route element={<ScreeRoute />}>
+ <Route element={<ScreenRoute />}>
45
{allRoutes.map((route) => (
46
<Route key={route.path} path={route.path} element={<route.component />} />
47
))}
@@ -52,7 +52,7 @@ auth.authStateReady().then(() => {
52
);
53
});
54
55
-function ScreeRoute() {
+function ScreenRoute() {
56
return (
57
<div className="p-8">
58
<Link to="/">
0 commit comments