feat: new layout

This commit is contained in:
MoreStrive
2024-06-28 15:39:26 +07:00
parent ab3419bd5f
commit ad962eda86
134 changed files with 4977 additions and 2985 deletions
+7
View File
@@ -0,0 +1,7 @@
export const dashboardRanges = [
// { title: "Hour", value: 1 },
{ title: "Day", value: 2 },
{ title: "Week", value: 3 },
{ title: "Month", value: 4 },
{ title: "Year", value: 5 },
];
+6
View File
@@ -0,0 +1,6 @@
export const dashboardSopes = [
{ title: "Global", value: 1 },
{ title: "Site", value: 2 },
{ title: "Group", value: 3 },
{ title: "User", value: 4 },
];
+2
View File
@@ -0,0 +1,2 @@
export { dashboardSopes } from "./dashboard-scope";
export { dashboardRanges } from "./dashboard-range";