Open smfoote opened 8 years ago
I want to be able to compile a template that I can import without requiring any additional dependencies.
import
import blogPostTemplate from './templates/blogPost'; ... render(model) { // for demonstration purposes only container.innerHTML = ''; container.appendChild(blogPostTemplate.render(model)); }, ...
I want to be able to compile a template that I can
import
without requiring any additional dependencies.