mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3bf590b67e
* dev: calendar view init * chore: new render logic * chore: implement calendar view * chore: calendar view * refactor: calendar payload * chore: remove active month logic from backend * chore: setup new store for calendar * refactor: issues fetching structure * chore: months dropdown * chore: modify request query params for calendar layout * refactor: remove console logs and add comments
20 lines
476 B
TypeScript
20 lines
476 B
TypeScript
import React from "react";
|
|
|
|
// layouts
|
|
import DefaultLayout from "layouts/default-layout";
|
|
import { UserAuthorizationLayout } from "layouts/auth-layout/user-authorization-wrapper";
|
|
// components
|
|
import { CalendarView } from "components/issues";
|
|
// types
|
|
import type { NextPage } from "next";
|
|
|
|
const OnBoard: NextPage = () => (
|
|
<UserAuthorizationLayout>
|
|
<DefaultLayout>
|
|
<CalendarView />
|
|
</DefaultLayout>
|
|
</UserAuthorizationLayout>
|
|
);
|
|
|
|
export default OnBoard;
|