()
| 37 | } |
| 38 | |
| 39 | createExampleComponent() { |
| 40 | return Neo.create({ |
| 41 | module: Container, |
| 42 | style : { |
| 43 | overflow : 'auto', |
| 44 | maxHeight: '100%' |
| 45 | }, |
| 46 | items : [{ |
| 47 | html: '<h1>Configurable</h1>', |
| 48 | style: {textAlign: 'center'} |
| 49 | }, { |
| 50 | module : Timer, |
| 51 | duration : '20s', |
| 52 | flag : 'timer-component', |
| 53 | dimensions: '8rem' |
| 54 | }] |
| 55 | }) |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * @param {String} config |