-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathApp.js
More file actions
39 lines (34 loc) · 1.06 KB
/
App.js
File metadata and controls
39 lines (34 loc) · 1.06 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
import React from 'react';
import { Container, Row, Col } from 'react-bootstrap';
import { ThemeProvider } from 'styled-components';
import theme from './styled/theme'
import StyledGlobal from './styled/Global';
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 (
<>
<ThemeProvider theme={theme}>
<StyledGlobal/>
<Container fluid>
<Row>
<Col>
<h2>Komponenty React Boostrap</h2></Col>
<Col>
<h2>Komponenty Twoje</h2>
</Col>
</Row>
<Task01/>
<Task02/>
<Task03/>
<Task04/>
<Task05/>
</Container>
</ThemeProvider>
</>
)
}
export default App;