Created
February 22, 2019 20:18
-
-
Save DSchau/82fe166d821102087ba37c2ef026eda7 to your computer and use it in GitHub Desktop.
Gatsby page example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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