diff --git a/.gitignore b/.gitignore index d30f40e..704fa39 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +.idea \ No newline at end of file diff --git a/.idea/calculator.iml b/.idea/calculator.iml new file mode 100644 index 0000000..c3cd732 --- /dev/null +++ b/.idea/calculator.iml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..3c73ef2 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..6aa3d5c --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..f9f3350 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,577 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Button + react + + + Screen + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ihkl + + + ) +} + +export default DataInput \ No newline at end of file diff --git a/src/js/Input.js b/src/js/Input.js new file mode 100644 index 0000000..dca7bd2 --- /dev/null +++ b/src/js/Input.js @@ -0,0 +1,11 @@ +import React from "react"; + +class Input extends React.Component { + render() { + return ( + + ); + } +} + +export default Input; \ No newline at end of file diff --git a/src/js/InputBlock.js b/src/js/InputBlock.js new file mode 100644 index 0000000..52f9c81 --- /dev/null +++ b/src/js/InputBlock.js @@ -0,0 +1,25 @@ +import React from "react"; +import Label from "./Label"; +import Input from "./Input"; + +class InputBlock extends React.Component { + + renderLabel(label){ + return