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