1/* 2 * This file is part of CoCalc: Copyright © 2022 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6export const MainPages = ["cards", "subscriptions", "receipts"] as const; 7export type MainPagesType = typeof MainPages[number]; 8 9