plane/web/pages/[workspaceSlug]/workspace-views/subscribed.tsx
Aaryan Khandelwal 8aebf0bbd2
refactor: folder structure, remove junk code (#2423)
* refactor: folder structure

* chore: ad order by target date option

* refactor: remove old layout components

* refactor: inbox folder structure
2023-10-13 12:00:54 +05:30

22 lines
738 B
TypeScript

// layouts
import { AppLayout } from "layouts/app-layout";
// components
import { GlobalViewsHeader } from "components/workspace";
import { GlobalIssuesHeader } from "components/headers";
import { GlobalViewLayoutRoot } from "components/issues";
// types
import { NextPage } from "next";
const GlobalViewSubscribedIssues: NextPage = () => (
<AppLayout header={<GlobalIssuesHeader activeLayout="spreadsheet" />}>
<div className="h-full overflow-hidden bg-custom-background-100">
<div className="h-full w-full flex flex-col border-b border-custom-border-300">
<GlobalViewsHeader />
<GlobalViewLayoutRoot type="subscribed" />
</div>
</div>
</AppLayout>
);
export default GlobalViewSubscribedIssues;