Created
December 15, 2021 05:59
-
-
Save tjmonsi/9951e1eb5e470d8b9b313158b258aea5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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