Skip to content

Instantly share code, notes, and snippets.

@DSchau
Created February 22, 2019 20:18
Show Gist options
  • Select an option

  • Save DSchau/82fe166d821102087ba37c2ef026eda7 to your computer and use it in GitHub Desktop.

Select an option

Save DSchau/82fe166d821102087ba37c2ef026eda7 to your computer and use it in GitHub Desktop.
Gatsby page example
import React from 'react'
export default class IndexPage extends React.Component {
// don't do this 😈
componentDidMount() {
const node = document.getElementById('whatever')
node.style.color = 'blue'
}
render() {
return (
<div id="whatever">
<p>I am blue when mounted</p>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment