rename .html files to .svelte

This commit is contained in:
Rich Harris
2019-02-08 11:40:30 -05:00
parent 84a0ae562f
commit 14ace57612
56 changed files with 1 additions and 1 deletions

View File

@@ -4,7 +4,7 @@
export let Title;
onMount(() => {
import('./_components/Title.html').then(mod => {
import('./_components/Title.svelte').then(mod => {
Title = mod.default;
});
});