fix: implementing layouts using _app.tsx get layout method. (#2620)
* fix: implementing layouts in all pages * fix: layout fixes, implemting using standard nextjs parctice
This commit is contained in:
parent
a582021f2c
commit
3c884fd46e
57 changed files with 1653 additions and 1423 deletions
|
|
@ -1,4 +1,4 @@
|
|||
import React, { Fragment, useEffect } from "react";
|
||||
import React, { Fragment, useEffect, ReactElement } from "react";
|
||||
import { useRouter } from "next/router";
|
||||
import { observer } from "mobx-react-lite";
|
||||
import { Tab } from "@headlessui/react";
|
||||
|
|
@ -18,10 +18,12 @@ import { Plus } from "lucide-react";
|
|||
import emptyAnalytics from "public/empty-state/analytics.svg";
|
||||
// constants
|
||||
import { ANALYTICS_TABS } from "constants/analytics";
|
||||
// type
|
||||
import { NextPageWithLayout } from "types/app";
|
||||
|
||||
const trackEventService = new TrackEventService();
|
||||
|
||||
const AnalyticsPage = observer(() => {
|
||||
const AnalyticsPage: NextPageWithLayout = observer(() => {
|
||||
// router
|
||||
const router = useRouter();
|
||||
const { workspaceSlug } = router.query;
|
||||
|
|
@ -110,4 +112,8 @@ const AnalyticsPage = observer(() => {
|
|||
);
|
||||
});
|
||||
|
||||
AnalyticsPage.getLayout = function getLayout(page: ReactElement) {
|
||||
return <AppLayout header={<WorkspaceAnalyticsHeader />}>{page}</AppLayout>;
|
||||
};
|
||||
|
||||
export default AnalyticsPage;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue