I'm submitting a feature request
Template ({Function})
component.html
webpack.config.js
{
loader: 'html-loader', options: { template: true }
}
component.js
import template from './component.html'
const component = template({ hello: 'Hello World!' })
// <div>Hello World!</div>