]>
git.r.bdr.sh - rbdr/serpentity/blob - lib/serpentity/component.js
707da7a6810e6c1bdd6b4818e0266d937515cc5d
4 * Components store data. Nothing to say here really, just
5 * inherit and add a prototype, or don't even inherit, see?
6 * It's just an empty class, so what I'm trying to say is your
7 * components can be any class whatsoever.
10 const Component
= class Component
{
13 Object
.assign(this, config
);
17 module
.exports
= Component
;