ConvoyPanel/resources/scripts/routes/_app/servers.$serverUuid/snapshots.lazy.tsx
Eric Wang 44358c24a4 idk
2024-12-21 21:40:48 -06:00

22 lines
629 B
TypeScript

import { createLazyFileRoute } from '@tanstack/react-router'
import SnapshotQuotaSidebar from '@/components/interfaces/Client/Server/Snapshots/SnapshotQuotaSidebar.tsx'
import SnapshotView from '@/components/interfaces/Client/Server/Snapshots/SnapshotView.tsx'
import { Heading } from '@/components/ui/Typography'
export const Route = createLazyFileRoute('/_app/servers/$serverUuid/snapshots')(
{
component: ServerSnapshots,
}
)
function ServerSnapshots() {
return (
<>
<Heading>Snapshots</Heading>
<SnapshotQuotaSidebar />
<SnapshotView />
</>
)
}