Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to change the tab text in React

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>
)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #tab #text #React
ADD COMMENT
Topic
Name
5+3 =