import React from 'react'; interface IProps { name: string; total: number; color: string; } export class CardListComponent extends React.Component { render() { return (
  • {this.props.name}
    {this.props.total || 0}
  • ); } }