mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
43404bfcdf
* chore: issue store for kanban and calendar * chore: updated ui for kanba and swimlanes * chore: yarn.lock updated
18 lines
324 B
TypeScript
18 lines
324 B
TypeScript
import React from "react";
|
|
|
|
export interface ICalendarLayout {
|
|
issues: any;
|
|
handleDragDrop: () => void;
|
|
}
|
|
|
|
export const CalendarLayout: React.FC<ICalendarLayout> = ({}) => {
|
|
console.log("kanaban layout");
|
|
return (
|
|
<div>
|
|
<div>header</div>
|
|
<div>content</div>
|
|
<div>footer</div>
|
|
</div>
|
|
);
|
|
};
|