Files
Aryan Tejani 89044e8c33 feat(design): skill health dashboard mockup (#518)
* feat(Design): skill health dashboard mockup

* fix(comments): code according to comments
2026-03-16 14:01:41 -07:00

21 lines
381 B
JavaScript

'use strict';
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,
};