File size: 617 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import { useTranslate } from 'i18n-calypso';
import NavigationHeader from 'calypso/components/navigation-header';
import { Panel } from 'calypso/components/panel';
import PhpMyAdminForm from './form';
export default function DatabaseSettings() {
const translate = useTranslate();
return (
<Panel className="settings-database phpmyadmin-card">
<NavigationHeader
title={ translate( 'Database' ) }
subtitle={ translate(
'For the tech-savvy, manage your database with phpMyAdmin and run a wide range of operations with MySQL.'
) }
/>
<PhpMyAdminForm disabled={ false } />
</Panel>
);
}
|