-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
48 lines (44 loc) · 1.31 KB
/
Copy pathApp.js
File metadata and controls
48 lines (44 loc) · 1.31 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
import React from 'react';
import { Provider } from 'react-redux';
import Content from 'components/Content';
import Download from 'components/Download';
import Upload from 'components/Upload';
import Indent from 'components/UI/Indent';
import Layout from 'components/UI/Layout';
import Title from 'components/UI/Title';
import Subtitle from 'components/UI/Subtitle';
import Footer from 'components/Footer/Footer';
import store from 'store';
function App() {
return (
<Provider store={store}>
<Layout>
<Indent>
<Title>5whys</Title>
<Subtitle>
<p>
The 5-whys is a technique developed within Toyota as a critical
<br />
component of its problem-solving training.{' '}
<a href="https://buffer.com/resources/5-whys-process/" target="_blank" rel="noopener noreferrer">
More details
</a>
.
</p>
<p>
Add a problem statement and start answering the why questions;
<br />
click on existing blocks to open new threads.
</p>
<br />
</Subtitle>
</Indent>
<Content />
<Upload />
<Download />
<Footer />
</Layout>
</Provider>
);
}
export default App;