// External imports import * as React from "react" // Internal imports import * as ce from "../../../../helpers/componentEnhancer" import Button from "../../button" export interface ParentProps { label?: string } interface StateProps {} interface DispatchProps {} interface LocalState {} class AdvancedFormSubmitButton extends React.Component< ParentProps & StateProps & DispatchProps & ce.EnhancedPropsPrivate, LocalState > { render() { return (
) } } const stateMappings: ce.StateMappings = (s, props) => ({}) const dispatchMappings: ce.DispatchMappings = (d, props) => ({}) export default ((): React.ComponentType => ce.enhance(AdvancedFormSubmitButton, { stateMappings, dispatchMappings }))()