import { FunctionComponent } from 'react'; import Form from './form'; // import { isFeaturedProvider } from '../utils'; interface Props { host?: string; } const Credentials: FunctionComponent< Props > = () => { return
; }; export default Credentials;