File tree Expand file tree Collapse file tree 7 files changed +25
-5
lines changed Expand file tree Collapse file tree 7 files changed +25
-5
lines changed File renamed without changes.
Original file line number Diff line number Diff line change
1
+ <script >
2
+ let {
3
+ title = ' ' ,
4
+ placeholder = ' Enter your text here...' ,
5
+ } = $props ();
6
+ </script >
7
+
8
+ <div class =" mb-3" >
9
+ <label for ="exampleFormControlTextarea1" class ="form-label" >{title }</label >
10
+ <textarea
11
+ bind:value ={title }
12
+ class =" form-control"
13
+ id =" exampleFormControlTextarea1"
14
+ {placeholder }
15
+ rows =" 3"
16
+ ></textarea >
17
+ </div >
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
<script >
2
2
import { page } from ' $app/state' ;
3
- import { emojis } from ' .. /components/emojis.js' ;
3
+ import { emojis } from ' $lib /components/emojis.js' ;
4
4
</script >
5
5
6
6
<svelte:head >
Original file line number Diff line number Diff line change 1
1
<script >
2
- import Counter from ' /src/components/Counter.svelte' ;
3
- import Logos from ' /src/components/Logos.svelte' ;
4
- import Modal from ' /src/components/Modal.svelte' ;
2
+ import Counter from ' $lib/components/Counter.svelte' ;
3
+ import Logos from ' $lib/components/Logos.svelte' ;
4
+ import Modal from ' $lib/components/Modal.svelte' ;
5
+ import Input from ' $lib/components/Input.svelte' ;
5
6
import { onMount } from ' svelte' ;
6
7
7
8
let hrefLocation = ' ' ;
38
39
/>
39
40
</div >
40
41
41
- <div >
42
+ <div class = " mb-3 " >
42
43
<a
43
44
href ="https://pagespeed.web.dev/report?url= {hrefLocation }"
44
45
target =" _blank"
48
49
Google PageSpeed Report
49
50
</a >
50
51
</div >
52
+ <Input />
51
53
</div >
52
54
55
+
53
56
<p >
54
57
Visit <a href =" https://svelte.dev/docs/kit" >svelte.dev/docs/kit</a > to read the documentation
55
58
</p >
You can’t perform that action at this time.
0 commit comments