tianji/src/client/routes/__root.tsx

19 lines
480 B
TypeScript
Raw Normal View History

2024-03-20 18:00:23 +00:00
import { createRootRouteWithContext, Outlet } from '@tanstack/react-router';
import { TanStackRouterDevtools } from '@tanstack/router-devtools';
interface RouterContext {
// The ReturnType of your useAuth hook or the value of your AuthContext
userInfo: any;
}
export const Route = createRootRouteWithContext<RouterContext>()({
component: () => {
return (
<>
<Outlet />
<TanStackRouterDevtools position="bottom-right" />
</>
);
},
});