feat(design): skill health dashboard mockup (#518)

* feat(Design): skill health dashboard mockup

* fix(comments): code according to comments
This commit is contained in:
Aryan Tejani
2026-03-17 02:31:41 +05:30
committed by GitHub
parent 10879da823
commit 89044e8c33
6 changed files with 934 additions and 3 deletions

View File

@@ -4,14 +4,17 @@ const provenance = require('./provenance');
const versioning = require('./versioning');
const tracker = require('./tracker');
const health = require('./health');
const dashboard = require('./dashboard');
module.exports = {
...provenance,
...versioning,
...tracker,
...health,
...dashboard,
provenance,
versioning,
tracker,
health,
dashboard,
};