File tree Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Expand file tree Collapse file tree 5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import '@atlaskit/css-reset';
66import Header from './components/Header' ;
77import Home from './pages/home' ;
88import PackageDoc from './pages/PackageDoc' ;
9- import Repl from './pages/Repl ' ;
9+ import Repl from './pages/repl ' ;
1010
1111const App = ( ) => (
1212 < Router >
Original file line number Diff line number Diff line change @@ -3,13 +3,12 @@ import { Link } from 'react-router-dom';
33import './style.css' ;
44
55export default ( { location } ) => {
6- const ifPathNameEqualTo = pathName => {
7- console . log ( location ) ;
8- return location && location . pathname === pathName ;
9- } ;
6+ const ifPathNameEqualTo = pathName => location && location . pathname === pathName ;
107 return (
118 < nav >
12- < h1 > Extract React Types</ h1 >
9+ < Link to = "/" >
10+ < h1 > Extract React Types</ h1 >
11+ </ Link >
1312 < div className = "header-controls" >
1413 { /* <label>
1514 Type system:
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import CodeMirror from 'react-codemirror';
33import 'codemirror/lib/codemirror.css' ;
44import PrettyProps from 'pretty-proptypes' ;
55import ert from 'extract-react-types' ;
6- import './App .css' ;
7- import * as uriUtils from './uriUtils' ;
6+ import './style .css' ;
7+ import * as uriUtils from './utils/ uriUtils' ;
88
99const STARTING_CODE = {
1010 code : `type ButtonPropType = {
Original file line number Diff line number Diff line change 11.container {
22 display : flex;
33 height : calc (100vh - 80px );
4+ overflow : scroll;
45 }
56
67 .container .block {
1718 height : 100% ;
1819 }
1920
20-
21-
2221 .error-container {
2322 position : absolute;
2423 bottom : 0 ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments