import { Helmet } from 'react-helmet' const Total = () => ( <div className="text-center"> <Helmet> <meta charSet="utf-8" /> <title>{this.props.total}</title> </Helmet> <h1>{this.props.total}</h1> </div> )