import React from 'react'; import { List, FlexboxGrid, Icon } from 'rsuite'; export default function MeetingList({ meetings, status }) { return ( <>

{status}

{meetings.map((meeting) => ( {/* Icon */} {/*Meeting info*/}
{meeting.title}
{meeting.start_time !== null && ( <>{meeting.start_time} )}
))}
); } // TODO move to a less file const styleCenter = { display: 'flex', justifyContent: 'center', alignItems: 'center', height: '60px', }; const titleStyle = { paddingBottom: 5, whiteSpace: 'nowrap', fontWeight: 500, };