-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathApp.js
More file actions
34 lines (30 loc) · 864 Bytes
/
App.js
File metadata and controls
34 lines (30 loc) · 864 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
30
31
32
33
34
import React from 'react';
import { Container, Row, Col } from 'react-bootstrap';
import ResetStyle from './ResetStyle';
import Task01 from './../../01/Task01';
import Task02 from './../../02/Task02';
import Task03 from './../../03/Task03';
import Task04 from './../../04/Task04';
import Task05 from './../../05/Task05';
const App = () => {
return (
<>
<ResetStyle />
<Container fluid>
<Row>
<Col>
<h2>Komponenty React Boostrap</h2></Col>
<Col>
<h2>Komponenty Twoje</h2>
</Col>
</Row>
<Task01 />
<Task02 />
<Task03 />
<Task04 />
<Task05 />
</Container>
</>
)
}
export default App;