import * as React from 'react'; import { SFC, ReactElement } from 'react'; export default function createElement( displayName: string, tagName: string = 'div', ): SFC { const fn: SFC = (props: any, ...children): ReactElement => React.createElement(tagName, props, ...children); fn.displayName = displayName; return fn; }