export type ComparisonRowProps = { area: string; asIs: string; toBe: string; }; export function ComparisonRow({ area, asIs, toBe }: ComparisonRowProps) { return (
{area}
{asIs}
{toBe}
); }