import { ReactElement } from "react"; // layouts import { AppLayout } from "layouts/app-layout"; import { WorkspaceSettingLayout } from "layouts/settings-layout"; // component import { WorkspaceSettingHeader } from "components/headers"; // ui import { Button } from "@plane/ui"; // types import { NextPageWithLayout } from "types/app"; const BillingSettingsPage: NextPageWithLayout = () => ( Billing & Plans Current plan You are currently using the free plan View Plans ); BillingSettingsPage.getLayout = function getLayout(page: ReactElement) { return ( }> {page} ); }; export default BillingSettingsPage;
You are currently using the free plan