React
React is a popular JavaScript library for building user interfaces (UIs) efficiently. Unlike a framework that dictates a large portion of your application's structure, React provides a more focused approach to UI component development.
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 ...
}
});