import { Box, Grid } from '@mui/material'; import { GoodCard } from '../GoodCard'; export const GoodList = ({ goods = [] } = {}) => { return ( {(goods || []).map((good) => ( ))} ); };