import SettingsLayout from '@/layouts/settings/layout'; import { Head, usePage } from '@inertiajs/react'; import Container from '@/components/container'; import Heading from '@/components/heading'; import { Button } from '@/components/ui/button'; import { DataTable } from '@/components/data-table'; import React from 'react'; import { SSHKey } from '@/types/ssh-key'; import { columns } from '@/pages/ssh-keys/components/columns'; import AddSshKey from '@/pages/ssh-keys/components/add-ssh-key'; type Page = { sshKeys: { data: SSHKey[]; }; }; export default function SshKeys() { const page = usePage(); return (
); }