// @flow import * as React from "react"; import { useTranslation } from "react-i18next"; import InputSelect, { type Props, type Option } from "components/InputSelect"; const InputSelectRole = (props: $Rest }>) => { const { t } = useTranslation(); return ( ); }; export default InputSelectRole;