Eject experiment

This commit is contained in:
Federico Kereki
2018-07-01 23:06:04 -03:00
parent 54a1633bdc
commit a1a45b0617
25 changed files with 16321 additions and 101 deletions
+8
View File
@@ -0,0 +1,8 @@
[Dolphin]
Timestamp=2018,7,1,22,54,37
Version=4
ViewMode=1
VisibleRoles=Details_text,Details_size,Details_modificationtime,Details_destination,Details_permissions,Details_owner,Details_group,CustomizedDetails
[Settings]
HiddenFilesShown=true
+1
View File
@@ -6,6 +6,7 @@
[lints]
all=warn
untyped-type-import=off
unsafe-getters-setters=off
[options]
+3 -4
View File
@@ -14,13 +14,12 @@
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-react": "^7.10.0",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewired": "^1.5.2",
"flow-bin": "^0.75.0",
"react-scripts": "1.1.4"
"flow-typed": "^2.4.0",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewired": "^1.5.2"
},
"dependencies": {
"flow-typed": "^2.4.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
-9
View File
@@ -1,9 +0,0 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
it('renders without crashing', () => {
const div = document.createElement('div');
ReactDOM.render(<App />, div);
ReactDOM.unmountComponentAtNode(div);
});