import {List, ListItem} from "@mui/material"; export default function CommentsList({comments}: {comments: string[]|undefined}){ if (!comments){ return (<>) } if (comments.length > 0){ return ( <>

Comments:

{comments.map((item) => { return {item} })} ) } else { return (<>) } }