-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
22 lines (21 loc) · 692 Bytes
/
Copy pathindex.js
File metadata and controls
22 lines (21 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
const element = (
// Write your code here.
<div className="congrats-card-container">
<h1 className="heading">Congratulations</h1>
<div className="card">
<img
src="https://assets.ccbp.in/frontend/react-js/congrats-card-profile-img.png"
className="profile-image"
/>
<h1 className="card-title">Kiran V</h1>
<p className="card-description">
Vishnu Institute of Computer Education and Technology, Bhimavaram
</p>
<img
src="https://assets.ccbp.in/frontend/react-js/congrats-card-watch-img.png"
className="watch-image"
/>
</div>
</div>
);
ReactDOM.render(element, document.getElementById("root"));