https://github.com/simpart/mofron-tmpl-simpleconts
center style contents of mofron UI template
https://github.com/simpart/mofron-tmpl-simpleconts
Last synced: 6 months ago
JSON representation
center style contents of mofron UI template
- Host: GitHub
- URL: https://github.com/simpart/mofron-tmpl-simpleconts
- Owner: simpart
- License: mit
- Created: 2016-12-04T04:17:57.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-27T15:19:30.000Z (over 9 years ago)
- Last Synced: 2025-08-09T11:20:30.109Z (11 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mofron-tmpl-simpleconts
Simple Contents Template for [moforn]((https://github.com/simpart/mofron)).
# Install
```bash
mofron install mofron mofron-tmpl-simpleconts
```
# Sample
```javascript
require('mofron');
let Text = require('mofron-comp-text');
let Simple = require('mofron-tmpl-simpleconts');
new Simple({
param : 'Simple Contents',
contents : [new mofron.Param('Sub Title 1', new Text('Contents 1')),
new mofron.Param('Sub Title 2', new Text('Contents 2'))],
visible : true
});
```