-
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathApp.js
More file actions
38 lines (34 loc) · 982 Bytes
/
App.js
File metadata and controls
38 lines (34 loc) · 982 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
35
36
37
38
import React from "react";
import { Container, Row, Col } from "react-bootstrap";
import { ThemeProvider } from "styled-components";
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 theme = {
primary: "#007bff",
secondary: "#6c757d",
};
const App = () => {
return (
<ThemeProvider theme={theme}>
<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;