7.6.2.24. useK8sModels
Hook that retrieves all current k8s models from redux. It returns an array with the first item as the list of k8s model and second item as inFlight status.
Example
const Component: React.FC = () => {
const [models, inFlight] = UseK8sModels();
return ...
}