-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathTask03.js
More file actions
25 lines (21 loc) · 681 Bytes
/
Task03.js
File metadata and controls
25 lines (21 loc) · 681 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
import React from 'react';
import { Row, Col, Breadcrumb as RBBreadcrumb } from 'react-bootstrap';
const Task03 = () => {
return (
<Row>
<Col>
<RBBreadcrumb>
<RBBreadcrumb.Item href="#">Home</RBBreadcrumb.Item>
<RBBreadcrumb.Item href="https://getbootstrap.com/docs/4.0/components/breadcrumb/">
Library
</RBBreadcrumb.Item>
<RBBreadcrumb.Item active>Data</RBBreadcrumb.Item>
</RBBreadcrumb>
</Col>
<Col>
Breadcrumb!
</Col>
</Row>
)
}
export default Task03;