Mercurial
view love/epi/src/routes/__root.tsx @ 41:d2bb317e01db
[Experiment] Calling seobeo in a python server and see.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 01 Dec 2025 20:58:04 -0800 |
| parents | cf9caa4abc3e |
| children |
line wrap: on
line source
import React from 'react'; import { createRootRoute, Outlet } from '@tanstack/react-router'; import { Sidebar } from '@/components/Sidebar/Sidebar'; export const Route = createRootRoute({ component: () => (<Outlet />), });