// This component can be used to test API calls, etc. import { Button, Container, ContentLayout, Header, SpaceBetween } from '@cloudscape-design/components'; import { listDatastores } from '../../utils/AwsHealthImagingApi'; export default function Debug() { async function getDatastores() { const datastores = await listDatastores(); console.debug('datastores', datastores); } return ( Debug}> ); }