chore(examples): add routify set-up

This commit is contained in:
Eric Liu 2020-09-07 14:51:19 -07:00
commit 1d479eb835
16 changed files with 2885 additions and 0 deletions

View file

@ -0,0 +1,6 @@
import HMR from "@sveltech/routify/hmr";
import App from "./App.svelte";
const app = HMR(App, { target: document.body }, "routify-app");
export default app;