import * as React from 'react'; import { Navigation, Link, Layout, Header, createApp } from 'react-app'; const store = {}; const routes = { path: '/', children: [ { path: '/', action() { return { title: 'Foo Page', component:

Foo!

}; } }, { path: '/bar', action() { return { title: 'Bar Page', component:

Bar!

}; } } ] }; ; ;
; ; createApp({ routes, context: { store }, container: document.body });