15 lines
344 B
JavaScript
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();
|