Created
September 7, 2017 12:07
-
-
Save sigidhanafi/31b279b3fd2d530af8b01f3078388222 to your computer and use it in GitHub Desktop.
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' | |
import ReactDOM from 'react-dom' | |
import App from './components/app' | |
ReactDOM.render(<App />, document.querySelector('.container')) | |
// this will remove component from DOM after 10000 ms | |
setTimeout(() => { | |
ReactDOM.unmountComponentAtNode(document.querySelector('.container')) | |
}, 10000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment