React
React is a JavaScript library developed by Meta for building user interfaces, especially single-page applications (SPAs). It uses a component-based architecture and a virtual DOM for efficient rendering and state management.
Coming Soon...
Listen for Events
Your application can subscribe to the Localess Visual Editor Events :
TypeScript
window.localess.on(['input', 'change'], (event) => {
if (event.type === 'input' || event.type === 'change') {
console.log(event.data);
//Update your content data ...
}
});