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 0d6807d commit e13a6d0Copy full SHA for e13a6d0
src/App.jsx
@@ -35,14 +35,9 @@ function App() {
35
<section id="core-concepts">
36
<h2>Time to get started!</h2>
37
<ul>
38
- <CoreConcept
39
- title={CORE_CONCEPTS[0].title}
40
- description={CORE_CONCEPTS[0].description}
41
- image={CORE_CONCEPTS[0].image}
42
- />
43
- <CoreConcept {...CORE_CONCEPTS[1]} />
44
- <CoreConcept {...CORE_CONCEPTS[2]} />
45
- <CoreConcept {...CORE_CONCEPTS[3]} />
+ {CORE_CONCEPTS.map(concept => (
+ <CoreConcept key={concept.title} {...concept} />
+ ))}
46
</ul>
47
</section>
48
<section id="examples">
0 commit comments