12345678910111213141516171819202122 |
- import LoadingIndicator from 'sentry/components/loadingIndicator';
- import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
- import type {Organization} from 'sentry/types/organization';
- import withOrganizations from 'sentry/utils/withOrganizations';
- import NotificationSettings from './notificationSettings';
- interface NotificationSettingsControllerProps extends RouteComponentProps<{}, {}> {
- organizations: Organization[];
- organizationsLoading?: boolean;
- }
- export function NotificationSettingsController({
- organizationsLoading,
- }: NotificationSettingsControllerProps) {
- if (organizationsLoading) {
- return <LoadingIndicator />;
- }
- return <NotificationSettings />;
- }
- export default withOrganizations(NotificationSettingsController);
|