import styles from '@system/graphs/ChartLegend.module.scss'; export default function ChartLegend(props) { return (
{props.data.map((backgroundColor) => { return (
{backgroundColor}
); })}
); }