facet-lib
Version:
React component library for the Bare Metal Installer
11 lines (10 loc) • 392 B
TypeScript
import React from 'react';
import { HostSubnets } from '../../types/clusters';
import { ManagedDomain, Cluster } from '../../api/types';
declare type NetworkConfigurationProps = {
cluster: Cluster;
hostSubnets: HostSubnets;
managedDomains: ManagedDomain[];
};
declare const NetworkConfiguration: React.FC<NetworkConfigurationProps>;
export default NetworkConfiguration;