import * as React from "react"; import { Button, Container } from "reactstrap"; export interface IInternalResultsProps { correct: number; count: number; onReview(): void; onReset(): void; } export class InternalResults extends React.PureComponent< IInternalResultsProps > { render() { return (

Correct: {this.props.correct} / {this.props.count}

); } }