mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 14:47:14 +01:00
Updated reports components.
This commit is contained in:
parent
f5bc3dc6c2
commit
0f6cdf8b80
95 changed files with 580 additions and 698 deletions
|
|
@ -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>;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue