// @flow
import * as React from 'react';
import { Label } from './common';
type InputSimpleProps = {
name: string,
type: string,
label?: any,
};
export const InputSimple = (inputSimpleProps: InputSimpleProps) => {
const { name, type, label, ...inputProps } = inputSimpleProps;
return (
<>
>
);
};
type BlockWrapProps = {
blockWrap: boolean,
children?: any,
};
export const BlockWrapWrapper = (blockWrapProps: BlockWrapProps) => {
const { blockWrap, children } = blockWrapProps;
return blockWrap ? (
{children}
) : (
{children}
);
};