import domdom from '@eirikb/domdom'; // Important part interface Data { hello: string; } const { React, init, don, path } = domdom({ hello: 'World!', }); const view = {don(path().hello)}; // Important part init(document.body, view);