feat(new team contract): digitized team new section discussed on saturday

This commit is contained in:
2025-07-21 13:54:02 -06:00
parent 511725110b
commit 26d192514b
3 changed files with 196 additions and 48 deletions

View File

@ -87,6 +87,28 @@ function exampleFunct2(inputVar) {
### Svelte/SvelteKit
```html
<script>
// imports, runes and javascript/typescript functions
let { exampleProp } = $props();
let exmapleState = $state(intialValue);
let exampleDerivedState = $derived(exampleState + exampleProp);
</script>
<p>Html tags go here</p>
<div>{exmapleDerivedState}</div>
<style>
div {
/* scoped stying (only effects the tags in this .svelte file) */
}
p {
margin: 0px;
padding: 0px;
}
</style>
```
<!-- svelte is not a default preview -->
```html