Skip to content

Instantly share code, notes, and snippets.

@tjmonsi
Created December 15, 2021 05:51
Show Gist options
  • Select an option

  • Save tjmonsi/839ad07b4d4b6df9beb4671c1ac5f0f6 to your computer and use it in GitHub Desktop.

Select an option

Save tjmonsi/839ad07b4d4b6df9beb4671c1ac5f0f6 to your computer and use it in GitHub Desktop.
Small router
import { html } from 'lit';
import '@tjmonsi/small-router/small-router.js';
const el = document.querySelector('small-router');
if (el) {
el.routes = {
'/': {
render: () => html`Hello world`
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment