mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
12 lines
151 B
TypeScript
12 lines
151 B
TypeScript
import React from "react";
|
|
|
|
export const KanbanInitLayout = () => {
|
|
console.log("");
|
|
|
|
return (
|
|
<div>
|
|
<div>Hello</div>
|
|
</div>
|
|
);
|
|
};
|