This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2022-02-18 08:17:28 +00:00
|
|
|
import * as React from "react";
|
2022-02-15 09:04:19 +00:00
|
|
|
|
2022-02-21 08:30:39 +00:00
|
|
|
import DashboardLayout from "../layouts/DashboardLayout";
|
|
|
|
|
2022-02-15 09:04:19 +00:00
|
|
|
const IndexPage = () => {
|
2022-02-18 08:17:28 +00:00
|
|
|
return <>Dashboard</>;
|
|
|
|
};
|
2022-02-15 09:04:19 +00:00
|
|
|
|
2022-02-21 08:30:39 +00:00
|
|
|
IndexPage.Layout = DashboardLayout;
|
|
|
|
|
2022-02-18 08:17:28 +00:00
|
|
|
export default IndexPage;
|