-
Matiss Janis Aboltins authoredMatiss Janis Aboltins authored
template.ts 238 B
// @ts-strict-ignore
const template = ({ imports, interfaces, componentName, props, jsx }, { tpl }) => {
return tpl`
${imports};
${interfaces};
export const ${componentName} = (${props}) => (
${jsx}
);
`
}
module.exports = template