Implement dashboard skeleton

This commit is contained in:
Jas Singh
2024-07-03 16:56:59 -07:00
parent f0366f3186
commit ce54b7a6d8
12 changed files with 192 additions and 9 deletions

View 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 };