1
2
3
4
5
6
7
8
9
10
11
12
13
14
| import { ProjectsPage } from "./Projects/Projects";
| import { HomePage } from "./Home/HomePage";
| import { OrganizationPage } from "./Organization";
| import { ModelsPage } from "./Organization/Models/ModelsPage";
| import { FF_HOMEPAGE, isFF } from "../utils/feature-flags";
| import { pages } from "@humansignal/app-common";
|
| export const Pages = [
| isFF(FF_HOMEPAGE) && HomePage,
| ProjectsPage,
| OrganizationPage,
| ModelsPage,
| pages.AccountSettingsPage,
| ].filter(Boolean);
|
|