Initial commit

This commit is contained in:
Scott Idem
2021-07-08 11:32:13 -04:00
parent 556fe4a191
commit c19a315bf2
31 changed files with 4936 additions and 48 deletions

21
src/App.svelte Normal file
View File

@@ -0,0 +1,21 @@
<script lang="ts">
import Test from './test.svelte';
export let name: string;
</script>
<section>
<p>Name: {name}</p>
<Test />
</section>
<style>
section {
text-align: center;
}
p {
color: green;
}
</style>