import React from 'react'; type props = { label: string; name: string; options: string[]; }; const Select: React.FC = ({ label, name, options }) => { return ( <> ); }; export default Select;