module.exports = ({ template, script, style }) => { const templateBlock = `${template}`; const scriptBlock = ``; const styleBlock = ``; return ` ${template ? templateBlock : ''} ${script ? scriptBlock : ''} ${style ? styleBlock : ''} `; };