import { h, render } from 'preact'; import { Listings } from '../listings/listings'; function loadElement() { const root = document.getElementById('classifieds-index-container'); if (root) { render(, root, root.firstElementChild); } } window.InstantClick.on('change', () => { loadElement(); }); loadElement();