Testing Phases

This commit is contained in:
Fred Boniface 2023-06-12 19:23:33 +01:00
parent 721aed99a5
commit 11d0460d07
2 changed files with 12 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<script> <script>
import Menu from '/src/components/small-header.svelte' import Menu from '../components/small-header.svelte'
</script> </script>
<Menu /> <Menu />
<h1>Welcome to SvelteKit</h1> <h1>Welcome to SvelteKit</h1>

View File

@ -0,0 +1,11 @@
<script>
window.alert("Test Page")
</script>
<h2>Test Route</h2>
<style>
h2 {
color: palevioletred;
}
</style>