Skip to content

Commit

Permalink
TypeScript + React + Explorer (#9)
Browse files Browse the repository at this point in the history
Convert the UI to React + Typescript

The Explorer is more complex than static tables. The hover + tree required a little bit more of state management. After trying without any state, this feels better.
  • Loading branch information
genintho committed May 4, 2019
1 parent 2b90634 commit 9e428fc
Show file tree
Hide file tree
Showing 46 changed files with 35,684 additions and 4,806 deletions.
1 change: 1 addition & 0 deletions .env
@@ -0,0 +1 @@
SKIP_PREFLIGHT_CHECK=true
27 changes: 25 additions & 2 deletions .gitignore
@@ -1,3 +1,26 @@
.idea
node_modules
coverage

# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

4 changes: 4 additions & 0 deletions babel.config.js
@@ -0,0 +1,4 @@
// babel.config.js
module.exports = {
presets: [["@babel/preset-env", {}], "@babel/preset-typescript"],
};
285 changes: 0 additions & 285 deletions demo.html

This file was deleted.

0 comments on commit 9e428fc

Please sign in to comment.