mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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>
|
||
|
);
|
||
|
};
|