Skip to content

Instantly share code, notes, and snippets.

@sigidhanafi
Created September 7, 2017 12:07
Show Gist options
  • Save sigidhanafi/31b279b3fd2d530af8b01f3078388222 to your computer and use it in GitHub Desktop.
Save sigidhanafi/31b279b3fd2d530af8b01f3078388222 to your computer and use it in GitHub Desktop.
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