import { Grid } from '@material-ui/core'; import * as prettyBytes from 'pretty-bytes'; import Panel from './Panel'; import AllocationBar from './AllocationBar'; import { HeaderText, BodyText } from './Text'; import PeriodicFetch from '../lib/fetchers/periodicFetch'; const Memory = ({ uuid }: { uuid: string }): JSX.Element => { const { data, isLoading } = PeriodicFetch( `${process.env.NEXT_PUBLIC_API_URL}/anvils/get_memory?anvil_uuid=`, uuid, ); const memoryData = isLoading || !data ? { total: 0, free: 0 } : data; return ( ); }; export default Memory;