aboutsummaryrefslogtreecommitdiff
path: root/src/app/(main)/boards/page.tsx
blob: e8ca66244bb49deaebc4a292d12abe0d780f380c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import type { Metadata } from 'next';
import { BoardsPage } from './BoardsPage';

export default function () {
  return <BoardsPage />;
}

export const metadata: Metadata = {
  title: 'Boards',
};