import * as React from "react"; import { Button } from "reactstrap"; export interface IInternalStartProps { count: number; title: React.ReactChild | React.ReactChild[]; onStart(): void; } export class InternalStart extends React.PureComponent { render() { return (
{this.props.title}

{this.props.count} question(s)

); } }