simplyview
Version:
Library to rapidly build UI components, using declarative tools
23 lines (20 loc) • 467 B
JavaScript
import { activate } from './activate.mjs'
import { actions as action } from './action.mjs'
import { app } from './app.mjs'
import { commands as command } from './command.mjs'
import { include } from './include.mjs'
import { keys as key } from './key.mjs'
import { routes as route } from './route.mjs'
import { view } from './view.mjs'
const simply = {
activate,
action,
app,
command,
include,
key,
route,
view
}
window.simply = simply
export default simply