We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3561bf2 commit f1b7c08Copy full SHA for f1b7c08
site/content/examples/03-logic/04-keyed-each-blocks/App.svelte
@@ -2,11 +2,11 @@
2
import Thing from './Thing.svelte';
3
4
let things = [
5
- { id: 1, color: '#0d0887' },
6
- { id: 2, color: '#6a00a8' },
7
- { id: 3, color: '#b12a90' },
8
- { id: 4, color: '#e16462' },
9
- { id: 5, color: '#fca636' }
+ { id: 1, color: 'darkblue' },
+ { id: 2, color: 'indigo' },
+ { id: 3, color: 'deeppink' },
+ { id: 4, color: 'salmon' },
+ { id: 5, color: 'gold' }
10
];
11
12
function handleClick() {
0 commit comments