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