import React from 'react'
export default function Input(props) {
return (
{props.title != null ? (
) : null}
{props.children}
)
}
export function TextArea({label, title, name, id, children, ...props}) {
return (
{children}
)
}
export function CheckBox({label, title, name, id, children, ...props}){
return(
{title != null ? (
) : null}
{children}
)
}