import React from 'react'; type Props = { text: string; name: string; children?: JSX.Element; } export const Select: React.FC = ({text, name, children}) => { return( <> ) }