mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 03:25:40 +01:00
Progress check-in.
Some checks failed
Node.js CI / build (postgresql, 18.18, 10) (push) Has been cancelled
Some checks failed
Node.js CI / build (postgresql, 18.18, 10) (push) Has been cancelled
This commit is contained in:
parent
5ce1b40330
commit
d227bc369f
11 changed files with 519 additions and 143 deletions
|
|
@ -1,17 +1,17 @@
|
|||
'use client';
|
||||
import { Column } from '@umami/react-zen';
|
||||
import { BoardHeader } from '@/app/(main)/boards/[boardId]/BoardHeader';
|
||||
import { BoardProvider } from '@/app/(main)/boards/BoardProvider';
|
||||
import { PageBody } from '@/components/common/PageBody';
|
||||
import { useMessages } from '@/components/hooks';
|
||||
|
||||
export function BoardPage() {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
export function BoardPage({ boardId }: { boardId: string }) {
|
||||
return (
|
||||
<PageBody>
|
||||
<Column margin="2">
|
||||
<BoardHeader />
|
||||
</Column>
|
||||
</PageBody>
|
||||
<BoardProvider boardId={boardId}>
|
||||
<PageBody>
|
||||
<Column>
|
||||
<BoardHeader />
|
||||
</Column>
|
||||
</PageBody>
|
||||
</BoardProvider>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue