Create app
Basic usage
using app = await createApp();using dc = app.collector();using fixation = app.scene( (props: {}, ctx) => { const node = document.createElement('div'); node.textContent = '+'; return node; }, { defaultProps: {}, duration: 500, },); Copy
using app = await createApp();using dc = app.collector();using fixation = app.scene( (props: {}, ctx) => { const node = document.createElement('div'); node.textContent = '+'; return node; }, { defaultProps: {}, duration: 500, },);
App App.scene
Create app