import { Card } from '@automattic/components'; import { useState } from 'react'; import DataCenterPicker from 'calypso/blocks/data-center-picker'; const DataCenterPickerExample = () => { const [ value, setValue ] = useState( '' ); return (
); }; DataCenterPickerExample.displayName = 'DataCenterPicker'; export default DataCenterPickerExample;