This commit is contained in:
Brian Sakal
2022-02-27 21:45:37 -05:00
parent 340d4caa9e
commit eed3f1326b
12 changed files with 171 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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;