Last active
August 29, 2015 14:25
-
-
Save yelouafi/5d5d24715d76bced336f 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 snabbdom from 'snabbdom'; | |
const patch = snabbdom.init([ // Init patch function with choosen modules | |
require('snabbdom/modules/class'), // makes it easy to toggle classes | |
require('snabbdom/modules/props'), // for setting properties on DOM elements | |
require('snabbdom/modules/style'), // handles styling on elements with support for animations | |
require('snabbdom/modules/eventlisteners'), // attaches event listeners | |
]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment