render()

in src/component.tsx [67:81]


    render(){
        const { textLabel, textValue, size, background, borderWidth } = this.state;

        const style: React.CSSProperties = { width: size, height: size, background, borderWidth };

        return (
            <div className="circleCard" style={style}>
                <p>
                    {textLabel}
                    <br/>
                    <em>{textValue}</em>
                </p>
            </div>
        )
    }