// Create a module to keep // our template functions // out of the global scope let Templates = (function() { return { // Allowing an id to be passed in is very useful // for finding this node after it gets mounted circle(id = '') { return `` }, svg(id = '', children) { return `${children}` } } })()