mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 00:27:11 +01:00
Start using react-zen.
This commit is contained in:
parent
020cfdc646
commit
71e4f8f49b
24 changed files with 1872 additions and 609 deletions
3
src/app/(main)/boards/BoardsPage.tsx
Normal file
3
src/app/(main)/boards/BoardsPage.tsx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
export default function BoardsPage() {
|
||||
return <h1>hi.</h1>;
|
||||
}
|
||||
10
src/app/(main)/boards/page.tsx
Normal file
10
src/app/(main)/boards/page.tsx
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
import BoardsPage from './BoardsPage';
|
||||
import { Metadata } from 'next';
|
||||
|
||||
export default function () {
|
||||
return <BoardsPage />;
|
||||
}
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Boards',
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue