mirror of
https://github.com/rjNemo/React-SaaS-sample
synced 2026-06-10 06:36:38 +00:00
30 lines
782 B
JavaScript
30 lines
782 B
JavaScript
import React, { useEffect } from "react";
|
|
|
|
import DashboardSection from "../components/DashboardSection";
|
|
|
|
import { useAuth } from "../util/auth.js";
|
|
import { useRouter } from "../util/router.js";
|
|
import * as ROUTES from "../global/routes";
|
|
|
|
const DashboardPage = () => {
|
|
const auth = useAuth();
|
|
const router = useRouter();
|
|
|
|
// Redirect to signin if not signed in.
|
|
useEffect(() => {
|
|
if (auth.user === false) {
|
|
router.push(ROUTES.SIGNIN);
|
|
}
|
|
}, [auth, router]);
|
|
|
|
return (
|
|
<DashboardSection
|
|
color="white"
|
|
size="large"
|
|
title="Dashboard"
|
|
subtitle="Dashboard components are coming to the Divjoy library soon. For now, you can implement a custom dashboard here after exporting your code."
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default DashboardPage;
|