Updated reports components.
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
import { Column } from '@umami/react-zen';
|
||||
|
||||
export interface BoardProps {}
|
||||
|
||||
export function Board(props: BoardProps) {
|
||||
return <Column>{}</Column>;
|
||||
export interface BoardProps {
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
|
||||
export function Board({ children }: BoardProps) {
|
||||
return <Column>{children}</Column>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user