Created
February 19, 2017 12:24
-
-
Save gauravtiwari/367245b076f8ecb3ba8a2b85b018c371 to your computer and use it in GitHub Desktop.
Counter index initializer
This file contains 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
// Initialize the counter code when DOM is ready | |
import './style.sass'; | |
import counter from './counter'; | |
document.addEventListener('DOMContentLoaded', () => { | |
counter.initialize(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment