docbrown/app/javascript/packs/githubRepos.jsx
2019-04-16 17:28:19 -04:00

15 lines
344 B
JavaScript

import { h, render } from 'preact';
import { GithubRepos } from '../githubRepos/githubRepos';
function loadElement() {
const root = document.getElementById('github-repos-container');
if (root) {
render(<GithubRepos />, root, root.firstElementChild);
}
}
window.InstantClick.on('change', () => {
loadElement();
});
loadElement();