forked from shahibuzzaman/covid19-tracker-reactJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSafetyTips.js
More file actions
29 lines (27 loc) · 736 Bytes
/
SafetyTips.js
File metadata and controls
29 lines (27 loc) · 736 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
25
26
27
28
29
import React, { Component } from 'react';
import { Card, CardImg, Button } from 'reactstrap';
import Img from './prevention.svg';
class SafetyTips extends Component {
render() {
return (
<div
className='position-fixed text-center '
style={{ marginTop: '10px', marginLeft: '', width: '20%' }}
>
<Card>
<Button
disabled
style={{ backgroundColor: '#2D9707', color: 'white' }}
>
PREVENTION
</Button>
<CardImg src={Img} alt='Card image cap' />
<a href='https://www.freepik.com/free-photos-vectors/home'>
© freepik
</a>
</Card>
</div>
);
}
}
export default SafetyTips;