File size: 349 Bytes
72db8a4
 
 
 
ca5bd83
 
72db8a4
ca5bd83
 
 
 
 
 
 
 
72db8a4
ca5bd83
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<script lang="ts">
import { notesImage } from './stores';
</script>

<section>
  <h2>Visualised notes</h2>
  <img src={$notesImage} alt="MIDI notes of composition" />
</section>

<style>
section {
  border: 2px solid hsl(0 0% 80%);
  border-radius: 0.375rem;
  padding: 1rem;
}

img {
  display: block;
  margin: auto;
  max-width: 100%;
}
</style>