Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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;