blob: 66af70ed412914d660096d00ffc783f79582bd3c [file]
import _ from 'lodash'
function component() {
const element = document.createElement('div')
// Lodash, currently included via a script, is required for this line to work
element.innerHTML = _.join(['Hello', 'webpack'], ' ')
return element
}
document.body.appendChild(component())