import React from 'react'; const styles = require('./style.module.styl'); const errorImage = require('./imgs/empty@2x.png'); interface ComponentProps { text: string; } const Template = (type: any) => { function Component(props: ComponentProps) { return (

{props.text}

); } return Component; }; const Error = Template(errorImage); const List = Template(errorImage); export default { Error, List };