Skip to content

Commit

Permalink
Adding a more useful name to Keyboard class
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgef committed Jun 26, 2018
1 parent 0dec96e commit aa6a645
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/components/Keyboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import Keyboard from 'simple-keyboard';
import 'simple-keyboard/build/css/index.css';

class App extends Component {
class KeyboardReact extends Component {
state = {
input: '',
}
Expand Down Expand Up @@ -103,7 +103,7 @@ class App extends Component {
}
}

App.propTypes = {
KeyboardReact.propTypes = {
layoutName: PropTypes.string,
layout: PropTypes.object,
theme: PropTypes.string,
Expand All @@ -114,4 +114,4 @@ App.propTypes = {
debug: PropTypes.bool
};

export default App;
export default KeyboardReact;

0 comments on commit aa6a645

Please sign in to comment.