Implement dashboard skeleton
This commit is contained in:
21
modules/menus/dashboard/stats/index.js
Normal file
21
modules/menus/dashboard/stats/index.js
Normal file
@@ -0,0 +1,21 @@
|
||||
const Stats = () => {
|
||||
return Widget.Box({
|
||||
class_name: "stats-container",
|
||||
children: [
|
||||
Widget.Box({
|
||||
class_name: "stat-cpu",
|
||||
}),
|
||||
Widget.Box({
|
||||
class_name: "stat-ram",
|
||||
}),
|
||||
Widget.Box({
|
||||
class_name: "stat-gpu",
|
||||
}),
|
||||
Widget.Box({
|
||||
class_name: "stat-storage",
|
||||
}),
|
||||
],
|
||||
});
|
||||
};
|
||||
|
||||
export { Stats };
|
||||
Reference in New Issue
Block a user