Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created January 8, 2019 03:11
Show Gist options
  • Save ajcrites/3c9875e129850e519d7b7c024691f261 to your computer and use it in GitHub Desktop.
Save ajcrites/3c9875e129850e519d7b7c024691f261 to your computer and use it in GitHub Desktop.
export class About extends React.Component {
...
contentRef = React.createRef();
render() {
return <AboutContent ref={this.contentRef} />;
}
}
export const About = () => {
const contentRef = useRef(null);
...
return <AboutContent ref={contentRef} />
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment