import React from 'react';
import { List, ListItem, Typography } from '@mui/material';
import DataCube from './DataCube';
export default function Data({ setProperties, sn, properties }) {
if (!sn) {
return null;
}
const { targets } = sn.qae.data;
if (!targets.length) {
return No data targets found;
}
return (
{targets.map((t) => (
))}
);
}