|
@@ -1,7 +1,21 @@
|
|
|
<script>
|
|
|
+ import Nested from './Nested.svelte';
|
|
|
let src = './dancing-man.gif';
|
|
|
</script>
|
|
|
|
|
|
+
|
|
|
+<style>
|
|
|
+ /* styles goes here */
|
|
|
+ p {
|
|
|
+ color: purple;
|
|
|
+ font-family: 'Comic Sans MS';
|
|
|
+ font-size: 2em;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+
|
|
|
+
|
|
|
<div>
|
|
|
+ <p>This is a paragraph.</p>
|
|
|
+ <Nested/>
|
|
|
<img src={src} alt="A man dances.">
|
|
|
</div>
|