-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
24 lines (23 loc) · 717 Bytes
/
Copy pathindex.js
File metadata and controls
24 lines (23 loc) · 717 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Write your code here. */
const element = (
<div className='bg-container'>
<h1 className='heading'>Congratulations</h1>
<div className='card-container'>
<img
src='https://assets.ccbp.in/frontend/react-js/congrats-card-profile-img.png'
className='profile-img'
alt='profile'
/>
<h1 className='name'>Kiran V</h1>
<p className='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-img'
alt='watch'
/>
</div>
</div>
)
ReactDOM.render(element, document.getElementById('root'))