mirror of
https://github.com/umami-software/umami.git
synced 2026-02-18 11:35:37 +01:00
Boards components.
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
7edddf15a7
commit
a39ebffd8b
20 changed files with 450 additions and 33 deletions
17
src/app/(main)/boards/[boardId]/BoardPage.tsx
Normal file
17
src/app/(main)/boards/[boardId]/BoardPage.tsx
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
'use client';
|
||||
import { Column } from '@umami/react-zen';
|
||||
import { BoardHeader } from '@/app/(main)/boards/[boardId]/BoardHeader';
|
||||
import { PageBody } from '@/components/common/PageBody';
|
||||
import { useMessages } from '@/components/hooks';
|
||||
|
||||
export function BoardPage() {
|
||||
const { formatMessage, labels } = useMessages();
|
||||
|
||||
return (
|
||||
<PageBody>
|
||||
<Column margin="2">
|
||||
<BoardHeader />
|
||||
</Column>
|
||||
</PageBody>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue