You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
334 B
JavaScript
15 lines
334 B
JavaScript
import {elementOpen as o, elementClose as c, text as t} from '../vendor/incremental-dom.js';
|
|
import state from '../state.js';
|
|
import {pub} from '../pubsub.js';
|
|
|
|
|
|
const App = ()=>{
|
|
o('div', null, null,
|
|
'id', 'header');
|
|
o('h1');
|
|
t('Options Calendar-Spread Optimizer');
|
|
c('h1');
|
|
c('div');
|
|
}
|
|
|
|
export default App; |