Skip to content

Instantly share code, notes, and snippets.

@tjmonsi
Created December 15, 2021 05:59
Show Gist options
  • Save tjmonsi/9951e1eb5e470d8b9b313158b258aea5 to your computer and use it in GitHub Desktop.
Save tjmonsi/9951e1eb5e470d8b9b313158b258aea5 to your computer and use it in GitHub Desktop.
import { html } from 'lit';
import '@tjmonsi/small-router/small-router.js';
const el = document.querySelector('small-router');
if (el) {
el.routes = {
'/': {
render: () => html`<home-page></home-page>`,
preRender: () => import('./pages/home/index.js')
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment