mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
refactor(docker/containers): migrate networks table to react [EE-4665] (#10069)
This commit is contained in:
parent
776f6a62c3
commit
b15812a74d
28 changed files with 632 additions and 259 deletions
14
app/react/docker/queries/utils/index.ts
Normal file
14
app/react/docker/queries/utils/index.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { queryKeys as containerQueryKeys } from './container';
|
||||
import { queryKeys as rootQueryKeys } from './root';
|
||||
|
||||
export const queryKeys = {
|
||||
...rootQueryKeys,
|
||||
...containerQueryKeys,
|
||||
};
|
||||
|
||||
export {
|
||||
buildDockerSnapshotContainersUrl,
|
||||
type ContainersQueryParams,
|
||||
} from './container';
|
||||
|
||||
export { buildDockerSnapshotUrl } from './root';
|
Loading…
Add table
Add a link
Reference in a new issue