react-code-dataset
/
wp-calypso
/client
/hosting
/server-settings
/components
/phpmyadmin-card
/card.tsx
| import PhpMyAdminForm from 'calypso/sites/settings/database/form'; | |
| type PhpMyAdminCardProps = { | |
| disabled?: boolean; | |
| }; | |
| export default function PhpMyAdminCard( { disabled }: PhpMyAdminCardProps ) { | |
| return <PhpMyAdminForm disabled={ disabled } />; | |
| } | |