-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStandard
More file actions
67 lines (58 loc) · 1.96 KB
/
Standard
File metadata and controls
67 lines (58 loc) · 1.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
import React, { Component } from 'react'
import Carousel from "react-bootstrap/Carousel";
import img01 from "../assets/IMG_9660.JPG"
import img02 from "../assets/IMG_0537.JPG"
import img03 from "../assets/IMG_3038.JPG"
import img04 from "../assets/IMG_6607.JPG"
export default class CarouselBox extends Component {
render() {
return (
<Carousel>
<Carousel.Item>
<img
className="d-block w-100"
src={ img01 }
alt="First Img"
/>
<Carousel.Caption>
<h3>Erpaw</h3>
<p>aaasda</p>
</Carousel.Caption>
</Carousel.Item>
<Carousel.Item>
<img
className="d-block w-100"
src={ img02 }
alt="First Img"
/>
<Carousel.Caption>
<h3>Erpaw</h3>
<p>aaasda</p>
</Carousel.Caption>
</Carousel.Item>
<Carousel.Item>
<img
className="d-block w-100"
src={ img03 }
alt="First Img"
/>
<Carousel.Caption>
<h3>Erpaw</h3>
<p>aaasda</p>
</Carousel.Caption>
</Carousel.Item>
<Carousel.Item>
<img
className="d-block w-100"
src={ img04 }
alt="First Img"
/>
<Carousel.Caption>
<h3>Erpaw</h3>
<p>aaasda</p>
</Carousel.Caption>
</Carousel.Item>
</Carousel>
)
}
}