import * as React from 'react'; import { Navigate } from 'react-router-dom'; import Grid from '@mui/material/Grid'; import * as URLS from 'config/urls' import PaymentInformation from 'components/PaymentInformation/index.ee'; import PageTitle from 'components/PageTitle'; import Container from 'components/Container'; import useFormatMessage from 'hooks/useFormatMessage'; import useCloud from 'hooks/useCloud'; function BillingAndUsageSettings() { const isCloud = useCloud(); const formatMessage = useFormatMessage(); // redirect to the initial settings page if (isCloud === false) { return () } // render nothing until we know if it's cloud or not // here, `isCloud` is not `false`, but `undefined` if (!isCloud) return return ( {formatMessage('billingAndUsageSettings.title')} ); } export default BillingAndUsageSettings;