How to use the react-helmet.Helmet.propTypes function in react-helmet

To help you get started, we’ve selected a few react-helmet examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github hyanmandian / react-etalpreliob / src / components / Head / index.js View on Github external
<title>{title}</title>
      
    
  );
}

Head.defaultProps = {
  title: "",
  description: ""
};

Head.propTypes = {
  title: string,
  description: string,
  ...Helmet.propTypes
};