import { Grid, Switch } from '@material-ui/core'; import InnerPanel from './InnerPanel'; import AllocationBar from './AllocationBar'; import { BodyText } from './Text'; const AnvilNode = ({ node }: { node: AnvilStatus }): JSX.Element => { return ( <> {node && node.nodes.map( (n): JSX.Element => { return ( ); }, )} ); }; export default AnvilNode;