feat: add empty billing and usage page
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { Route, Navigate } from 'react-router-dom';
|
||||
import SettingsLayout from 'components/SettingsLayout';
|
||||
import ProfileSettings from 'pages/ProfileSettings';
|
||||
import BillingAndUsageSettings from 'pages/BillingAndUsageSettings/index.ee';
|
||||
|
||||
import * as URLS from 'config/urls';
|
||||
|
||||
@@ -15,6 +16,15 @@ export default (
|
||||
}
|
||||
/>
|
||||
|
||||
<Route
|
||||
path={URLS.SETTINGS_BILLING_AND_USAGE}
|
||||
element={
|
||||
<SettingsLayout>
|
||||
<BillingAndUsageSettings />
|
||||
</SettingsLayout>
|
||||
}
|
||||
/>
|
||||
|
||||
<Route
|
||||
path={URLS.SETTINGS}
|
||||
element={<Navigate to={URLS.SETTINGS_PROFILE} replace />}
|
||||
|
Reference in New Issue
Block a user