"Batteries-included" reactive framework
import { tsx } from '@dojo/framework/core/vdom';
import WidgetBase from '@dojo/framework/core/WidgetBase';
import Hello from './widgets/Hello';
class App extends WidgetBase {
protected renderer() {
return (
{'Start editing to see some magic happen \u2728'}
);
}
}
import { create, tsx } from '@dojo/framework/core/vdom';
import Hello from './widgets/Hello';
const factory = create();
const App = factory(function App() {
return (
{'Start editing to see some magic happen \u2728'}
);
});
devpaul/catsvsdogs
State is managed globally by a store
Business logic is defined by processes and commands
They are tasked with manipulating the store
Dojo can pre-render routes into HTML at build time
and serve that HTML to the user before any HTML is loaded
dojo/site
dojo/widgets
Slides available at