export interface ExpressionSetInfoProps { id: number; name: string; description: string; expression_count: number; } export function ExpressionSetInfo({ id, name, description, expression_count, }: ExpressionSetInfoProps) { return (

{name} {/*
setRoute({ path: AppPath.ExpressionSetsSettings, options: { expression_set_id: id }, }) } > settings
*/}

{expression_count} expression(s)

{description}

); }