import type { FC } from 'react'; import type { PersonalDashboardProjectDetailsSchema } from '../../openapi'; import { Markdown } from '../common/Markdown/Markdown'; export const LatestProjectEvents: FC<{ latestEvents: PersonalDashboardProjectDetailsSchema['latestEvents']; }> = ({ latestEvents }) => { return ( ); };