{
function Demo(props) {
return e(
VitS.VitS,
{ config, height: 200, theme: 'light' },
null
);
}
VitS.registerPluginViewType("description", Description.DescriptionSubscriber, []);
const container = document.getElementById('root');
const root = ReactDOM.createRoot(container);
root.render(e(Demo));
}