import React from "react"; interface StatusBadgeProps { status: string; } export const StatusBadge: React.FC = ({ status }) => ( {status} );