import { h, render } from 'preact'; import { getUserDataAndCsrfToken } from '../chat/util'; import { ReadingList } from '../readingList/readingList'; function loadElement() { getUserDataAndCsrfToken().then(({ currentUser }) => { const followedTagNames = JSON.parse(currentUser.followed_tags).map(t => t.name); const root = document.getElementById('reading-list'); if (root) { render( , root, root.firstElementChild, ); } }); } window.InstantClick.on('change', () => { loadElement(); }); loadElement();