Skip to content

Commit

Permalink
update dev tool to have search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
bluebill1049 committed Feb 10, 2020
1 parent 85af5b2 commit 062d89f
Show file tree
Hide file tree
Showing 9 changed files with 354 additions and 232 deletions.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Coverage directory used by tools like istanbul
coverage

# Dependency directories
node_modules/
app/node_modules/
example/node_modules/
example/build/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

.DS_Store
/lib
/dist
.idea/
.rpt2_cache
.coveralls.yml
package-lock.json
/cypress/videos
/cypress/screenshots
1 change: 1 addition & 0 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"react-dom": "^16.12.0",
"react-hook-form": "^4.9.2",
"react-scripts": "3.3.1",
"react-simple-animate": "^3.3.6",
"typescript": "~3.7.2"
},
"scripts": {
Expand Down
231 changes: 0 additions & 231 deletions app/src/devlTool/content.tsx

This file was deleted.

3 changes: 3 additions & 0 deletions app/src/devlTool/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ export default () => (
</svg>
<p>Developer Tool</p>
<button
onClick={() => {

}}
style={{
appearance: 'none',
background: 'none',
Expand Down
2 changes: 1 addition & 1 deletion app/src/devlTool/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import { Control } from 'react-hook-form';
import Header from './header';
import Content from './content';
import Content from './panel';
import colors from './colors';

export default ({ control }: { control: Control }) => {
Expand Down
Loading

0 comments on commit 062d89f

Please sign in to comment.