import Card from '../../components/Common/Card'; import Divider from '../../components/Common/Divider'; import LabeledText from '../../components/Common/LabeledText'; import { IRSFormStats } from '../../models'; interface RSFormStatsProps { stats: IRSFormStats } function RSFormStats({stats}: RSFormStatsProps) { return ( { stats.count_property > 0 && } { stats.count_incalc > 0 && } { stats.count_base > 0 && } { stats.count_constant > 0 && } { stats.count_structured > 0 && } { stats.count_axiom > 0 && } { stats.count_term > 0 && } { stats.count_function > 0 && } { stats.count_predicate > 0 && } { stats.count_theorem > 0 && } ); } export default RSFormStats;