UNPKG

facet-lib

Version:

React component library for the Bare Metal Installer

9 lines (8 loc) 283 B
import React from 'react'; import { ClusterTableRows } from '../../types/clusters'; interface ClustersTableProps { rows: ClusterTableRows; deleteCluster: (id: string) => void; } declare const ClustersTable: React.FC<ClustersTableProps>; export default ClustersTable;