Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1045
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import { observer } from '@tachybase/schema';
|
|
|
|
export const KanbanCardViewer: any = observer(
|
|
(props: any) => {
|
|
return props.children;
|
|
},
|
|
{ displayName: 'KanbanCardViewer' },
|
|
);
|