diff options
Diffstat (limited to 'lib/components/elastic.js')
| -rw-r--r-- | lib/components/elastic.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/components/elastic.js b/lib/components/elastic.js new file mode 100644 index 0000000..ee41cf8 --- /dev/null +++ b/lib/components/elastic.js @@ -0,0 +1,12 @@ +import { Component } from '@serpentity/serpentity'; + +/** + * Component that stores elastic properties + * + * @extends {external:Serpentity.Component} + * @class ElasticComponent + * @param {object} config a configuration object to extend. + */ +export default class ElasticComponent extends Component { +}; + |