import React from 'react' import Badge from './Badge' import { faCalendarCheck } from '@fortawesome/free-solid-svg-icons' const LastPostAtBadge: React.FC<{ lastStatusAt: string | null }> = ({ lastStatusAt }) => { return ( ) } export default LastPostAtBadge