- {/*
{value}
*/}
-
-
+
+
+ handleChange(console.log(props.data, 'valen'))
+ }>
+ {props.data}
+
-
-
)
}
-export default Keys
\ No newline at end of file
+export default Keys;
\ No newline at end of file
diff --git a/src/components/assets/conaryFile.js b/src/components/assets/conaryFile.js
new file mode 100644
index 0000000..fa50ded
--- /dev/null
+++ b/src/components/assets/conaryFile.js
@@ -0,0 +1,237 @@
+import React from "react";
+// import { anime } from "react-anime";
+import "../../../index.scss";
+function ProfileInputs({ handleSubmit, addHandleChange }) {
+// var current = null;
+// const handleSubmitFocus = (e) => {
+// if (current) current.pause();
+// current = anime({
+// targets: "path",
+// strokeDashoffset: {
+// value: -2421,
+// duration: 700,
+// easing: "easeOutQuart",
+// },
+// strokeDasharray: {
+// value: "522 3000",
+// duration: 700,
+// easing: "easeOutQuart",
+// },
+// });
+// };
+// const handleTextFocus = (e) => {
+// if (current) current.pause();
+// //console.log(e);debugger;
+// current = anime({
+// targets: "path",
+// strokeDashoffset: {
+// value: e.target.dataset.strokedashoffset,
+// duration: 700,
+// easing: "easeOutQuart",
+// },
+// strokeDasharray: {
+// value: e.target.dataset.strokedasharray,
+// duration: 700,
+// easing: "easeOutQuart",
+// },
+// });
+ };
+ return (
+
+ );
+}
+export default ProfileInputs;
\ No newline at end of file
diff --git a/src/components/assets/numBtn.js b/src/components/assets/numBtn.js
index ec0fa46..d2293dd 100644
--- a/src/components/assets/numBtn.js
+++ b/src/components/assets/numBtn.js
@@ -1,31 +1,44 @@
import React from 'react';
import KeyButton from './KeyButton'
+import Box from '@material-ui/core/Box';
+import Typography from '@material-ui/core/Typography';
+
const Numbers = (props) => {
- console.log(props, 'number')
+ console.log(props, 'numbern ')
+
+ let squareItem = props.class.squareItem
+ let boardRow = props.class.boardRow
+ let bboard = props.class.board
const Length = 9;
let board = [];
for (let i = 0; i < Length; i++) {
- board.push(i + 1)
+ let key = i + 1
+ board.push(key)
}
-
-
+ const handleValueSquareChange = (i, j, newValue) => {
+ console.log(i, j, newValue, 'bigbang');
+ // props.onValueChange(i, j, newValue);
+ }
return (
-
- {(board.map(data =>
-
-
+
+
+ {(board.map(data =>
+
+
+
))}
-
- //
+
+
)
}