import { Grid, Switch } from '@material-ui/core'; import * as prettyBytes from 'pretty-bytes'; import InnerPanel from './InnerPanel'; import AllocationBar from './AllocationBar'; import { BodyText } from './Text'; const SharedStorageNode = ({ node, }: { node: AnvilSharedStorageNode; }): JSX.Element => { return ( ); }; export default SharedStorageNode;