25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- "use client";
- import Grid from "@mui/material/Grid";
- import Paper from "@mui/material/Paper";
- import { TFunction } from "i18next";
- import { useTranslation } from "react-i18next";
- import PageTitle from "../PageTitle/PageTitle";
- import DashboardTabButton from "./DashboardTabButton";
-
- const DashboardPage: React.FC = () => {
- const { t } = useTranslation("dashboard");
- return (
- <Grid container height="100vh">
- <Grid item sm>
- <PageTitle BigTitle={"Dashboards"}/>
- <DashboardTabButton/>
- </Grid>
- </Grid>
- );
- };
-
- export default DashboardPage;
|