File size: 460 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { useTranslate } from 'i18n-calypso';
import { FunctionComponent } from 'react';
import ServerCredentialsForm from 'calypso/components/jetpack/server-credentials-form';
const Form: FunctionComponent = () => {
const translate = useTranslate();
return (
<div className="credentials__form">
<h1>{ translate( 'Provide your SSH, SFTP or FTP server credentials' ) }</h1>
<ServerCredentialsForm role="form" />
</div>
);
};
export default Form;
|