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

@@ -0,0 +1,13 @@
<script context="module">
export function preload() {
return new Promise(fulfil => {
if (typeof window !== 'undefined') {
window.fulfil = fulfil;
} else {
fulfil({});
}
});
}
</script>
<h1>This page should never render</h1>