import type { NextPageWithLayout } from "../_app";
import { getDashboardLayout } from "~/components/Dashboard";
import Popup from "~/components/Popup";
import BoardsView from "~/views/boards";
const BoardsPage: NextPageWithLayout = () => {
return (
<>
>
);
};
BoardsPage.getLayout = (page) => getDashboardLayout(page);
export default BoardsPage;