import * as React from 'react';
import {TextInputDBValue, TextInputProps} from "./TextInput.types";
import {FieldStateProps} from "../../redux/FormComponents/FormComponents.types";
import { Text } from "react-sketchapp";

export const TextInput = (props: TextInputProps & FieldStateProps<TextInputDBValue>) => <Text>TextInput.sketch</Text>
