import React from 'react';
import PropTypes from 'prop-types';
import { observer } from 'mobx-react';
import { observable } from 'mobx';
import { Row, Col } from 'react-flexbox-grid';
import Heading from 'grommet/components/Heading';
import Box from 'grommet/components/Box';
import { Form, Field, FormState, nonBlank } from 'hippo/components/form';
import Notification from 'grommet/components/Notification';
import Extensions from '../../extensions';
import Layer from 'grommet/components/Layer';
import Paragraph from 'grommet/components/Paragraph';
import Anchor from 'grommet/components/Anchor';
import LinkIcon from 'grommet/components/icons/base/Link';
import Tenant from '../../models/tenant';
import Config from '../../config';
function onTenantSlugChangeClose() { }
function TenantSlugChange({ oldSlug }) {
if (!oldSlug) { return null; }
return (