File tree Expand file tree Collapse file tree 4 files changed +13
-50
lines changed Expand file tree Collapse file tree 4 files changed +13
-50
lines changed Original file line number Diff line number Diff line change 1
1
.App {
2
- text-align : center;
3
- }
4
-
5
- .App-logo {
6
- height : 40vmin ;
7
- pointer-events : none;
8
- }
9
-
10
- @media (prefers-reduced-motion : no-preference) {
11
- .App-logo {
12
- animation : App-logo-spin infinite 20s linear;
13
- }
14
- }
15
-
16
- .App-header {
17
- background-color : # 282c34 ;
18
- min-height : 100vh ;
19
2
display : flex;
20
- flex-direction : column;
21
3
align-items : center;
22
4
justify-content : center;
23
- font-size : calc (10px + 2vmin );
24
- color : white;
25
- }
26
-
27
- .App-link {
28
- color : # 61dafb ;
29
- }
30
-
31
- @keyframes App-logo-spin {
32
- from {
33
- transform : rotate (0deg );
34
- }
35
- to {
36
- transform : rotate (360deg );
37
- }
38
5
}
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import logo from './logo.svg' ;
2
+ import { Container , Row , Col } from 'reactstrap' ;
3
+
3
4
import './App.css' ;
4
5
5
6
function App ( ) {
6
7
return (
7
8
< div className = "App" >
8
- < header className = "App-header" >
9
- < img src = { logo } className = "App-logo" alt = "logo" />
10
- < p >
11
- Edit < code > src/App.js</ code > and save to reload.
12
- </ p >
13
- < a
14
- className = "App-link"
15
- href = "https://reactjs.org"
16
- target = "_blank"
17
- rel = "noopener noreferrer"
18
- >
19
- Learn React
20
- </ a >
21
- </ header >
9
+ < Container fluid >
10
+ < Col >
11
+ < Row >
12
+ < header >
13
+ < p > Coming soon to a theatre near you!</ p >
14
+ </ header >
15
+ </ Row >
16
+ </ Col >
17
+ </ Container >
22
18
</ div >
23
19
) ;
24
20
}
Original file line number Diff line number Diff line change 4
4
margin : 0 ;
5
5
font-family : 'Open Sans' , sans-serif;
6
6
-webkit-font-smoothing : antialiased !important ;
7
- -moz-osx-font-smoothing : grayscale;
8
7
}
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import ReactDOM from 'react-dom' ;
3
- import './index.css' ;
3
+
4
4
import App from './components/App' ;
5
+ import './index.css' ;
5
6
6
7
ReactDOM . render ( < App /> , document . getElementById ( 'root' ) ) ;
You can’t perform that action at this time.
0 commit comments