File size: 227 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { SftpForm } from 'calypso/sites/settings/sftp-ssh/sftp-form';

type SftpCardProps = {
	disabled?: boolean;
};

export const SftpCard = ( { disabled }: SftpCardProps ) => {
	return <SftpForm disabled={ disabled } />;
};