import { faNetworkWired } from '@fortawesome/free-solid-svg-icons'; import { useParams } from 'react-router-dom'; import tw from 'twin.macro'; import AdminBox from '@/components/admin/AdminBox'; import AllocationTable from '@/components/admin/nodes/allocations/AllocationTable'; import CreateAllocationForm from '@/components/admin/nodes/allocations/CreateAllocationForm'; export default () => { const params = useParams<'id'>(); return ( <>
); };