ConstExample Usage
const ns = createNamespace({ name: 'com.my-company' });
const element = createElement(ns, {
name: 'My Page With Buffer',
description: 'Page that allows controlling Retro Encabulators',
traits: [traits.Page, traits.BufferedChanges],
propsSchema: createPropsSchema().initial({}),
Component() {
return <div>My Page Content</div>;
},
});
Makes an element have the option for buffering changes locally.
Elements with this trait will: