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 (