import { ReactElement } from "react"; // components import { ProjectViewsHeader } from "components/headers"; import { ProjectViewsList } from "components/views"; // layouts import { AppLayout } from "layouts/app-layout"; // types import { NextPageWithLayout } from "lib/types"; const ProjectViewsPage: NextPageWithLayout = () => ; ProjectViewsPage.getLayout = function getLayout(page: ReactElement) { return ( } withProjectWrapper> {page} ); }; export default ProjectViewsPage;