import React from 'react'; import { ManageIdentities } from '../identity/ManageIdentities'; import { ManagePermissions } from '../permissions/ManagePermissions'; import { AccessTokens } from './AccessTokens'; import { Preferences } from './Preferences'; import { ManagePolicies } from '../permissions/policy/ManagePolicies'; import { ManageViews } from '../entity/view/ManageViews'; import { ManageOwnership } from '../entityV2/ownership/ManageOwnership'; import ManagePosts from './posts/ManagePosts'; import { Features } from './features/Features'; /** * URL Paths for each settings page. */ export const PATHS = [ { path: 'views', content: }, { path: 'tokens', content: }, { path: 'identities', content: }, { path: 'policies', content: }, { path: 'preferences', content: }, { path: 'permissions', content: }, { path: 'ownership', content: }, { path: 'posts', content: }, { path: 'features', content: }, ]; export const DEFAULT_PATH = PATHS[0];