ui(admin): implement user and node servers tab
This commit is contained in:
parent
bf9dfa87da
commit
11fc88c849
9 changed files with 234 additions and 186 deletions
13
resources/scripts/components/admin/nodes/NodeServers.tsx
Normal file
13
resources/scripts/components/admin/nodes/NodeServers.tsx
Normal file
|
@ -0,0 +1,13 @@
|
|||
import React from 'react';
|
||||
import ServersTable from '@/components/admin/servers/ServersTable';
|
||||
import { Context } from '@/components/admin/nodes/NodeRouter';
|
||||
|
||||
function NodeServers () {
|
||||
const node = Context.useStoreState(state => state.node);
|
||||
|
||||
return (
|
||||
<ServersTable filters={{ node_id: node?.id?.toString() }}/>
|
||||
);
|
||||
}
|
||||
|
||||
export default NodeServers;
|
Loading…
Add table
Add a link
Reference in a new issue