How to import HTML template file into JavaScript module
import template from './temlplate.html';
does not work in a browser.
Although some frameworks oblige developers to mix everything, generally web development is easier when the layout, styles and application logic are separated. You layout a page and its component in .html files, style them in .css files and add the logic implemented in many tiny modules each dedicated…