rynex
Version:
A minimalist TypeScript framework for building reactive web applications with no virtual DOM
23 lines • 608 B
JavaScript
/**
* Rynex UI Namespace
* Import everything with: import * as UI from 'rynex/runtime/ui'
* Then use: UI.vbox(), UI.state(), etc.
*/
// Re-export everything from the main runtime
export * from './index.js';
// Create a default export with all functions
import * as state from './state.js';
import * as dom from './dom.js';
import * as renderer from './renderer.js';
import * as helpers from './helpers/index.js';
export default {
// State management
...state,
// DOM manipulation
...dom,
// Renderer
...renderer,
// All helpers
...helpers
};
//# sourceMappingURL=ui.js.map