25 lines
687 B
TypeScript
25 lines
687 B
TypeScript
|
|
/**
|
||
|
|
* Host Details components module
|
||
|
|
* Re-exports all host details sub-components
|
||
|
|
*/
|
||
|
|
|
||
|
|
export { CreateGroupPanel } from './CreateGroupPanel';
|
||
|
|
export type { CreateGroupPanelProps } from './CreateGroupPanel';
|
||
|
|
|
||
|
|
export { ProxyPanel } from './ProxyPanel';
|
||
|
|
export type { ProxyPanelProps } from './ProxyPanel';
|
||
|
|
|
||
|
|
export { ChainPanel } from './ChainPanel';
|
||
|
|
export type { ChainPanelProps } from './ChainPanel';
|
||
|
|
|
||
|
|
export { EnvVarsPanel } from './EnvVarsPanel';
|
||
|
|
export type { EnvVarsPanelProps } from './EnvVarsPanel';
|
||
|
|
|
||
|
|
export {
|
||
|
|
HostDetailsHelp,
|
||
|
|
HostDetailsSection,
|
||
|
|
HostDetailsSettingRow,
|
||
|
|
} from './HostDetailsSection';
|
||
|
|
|
||
|
|
export { HostDetailsOverrideReset } from './HostDetailsOverrideReset';
|