DEV Community

Discussion on: How to add a dynamic title on your React app

Collapse
 
antibland profile image
Andy Hoffman

For those using React Hooks, here is the withTitle function:

const withTitle = ({ ChildComponent, title }) => (props) => (
  <>
    <TitleComponent title={title} />
    <ChildComponent {...props} />
  </>
);
Enter fullscreen mode Exit fullscreen mode