6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
|
import { observer } from '@formily/react';
|
||
|
|
||
|
export const KanbanCardViewer: any = observer((props: any) => {
|
||
|
return props.children;
|
||
|
});
|