8 lines
291 B
JavaScript
8 lines
291 B
JavaScript
import "../../chunks/async.js";
|
|
//#region src/routes/+page.svelte
|
|
function _page($$renderer) {
|
|
$$renderer.push(`<h1>Welcome to SvelteKit</h1> <p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>`);
|
|
}
|
|
//#endregion
|
|
export { _page as default };
|