-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathApp.jsx
More file actions
52 lines (46 loc) · 1.44 KB
/
Copy pathApp.jsx
File metadata and controls
52 lines (46 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import "./App.css";
function App() {
return (
<>
<header>
<div className="content-wrapper">
<h1>Welcome to the JSHeroes Bootcamp!</h1>
</div>
<img className="bear" src="/js-heroes-bear.png" />
</header>
<main>
<form className="search-form">
<input className="input" />
<button className="button">Search</button>
</form>
<ul className="repo-cards">
<li className="repo-card">
<span className="title">facebook/react</span>
<span className="description">placeholder description</span>
<section className="footer">
<div>Stars: 500</div>
<div>Forks: 100</div>
</section>
</li>
<li className="repo-card">
<span className="title">vuejs/vue</span>
<span className="description">placeholder description</span>
<section className="footer">
<div>Stars: 500</div>
<div>Forks: 100</div>
</section>
</li>
<li className="repo-card">
<span className="title">sveltejs/svelte</span>
<span className="description">placeholder description</span>
<section className="footer">
<div>Stars: 500</div>
<div>Forks: 100</div>
</section>
</li>
</ul>
</main>
</>
);
}
export default App;