import type { Server } from '@/types/server'; import type { ServerLog } from '@/types/server-log'; import Container from '@/components/container'; import { DataTable } from '@/components/data-table'; import { columns } from '@/pages/server-logs/components/columns'; import { usePage } from '@inertiajs/react'; import Heading from '@/components/heading'; import { PaginatedData } from '@/types'; export default function InstallingServer() { const page = usePage<{ server: Server; logs: PaginatedData; }>(); return ( {' '} ); }