Skip to content

Commit

Permalink
function to do level math return value of input field
Browse files Browse the repository at this point in the history
  • Loading branch information
G-bot987 committed Dec 26, 2022
1 parent dd30c5d commit 5bdc990
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ export default function Profile(Props: profileInterface) {
dispatch(levelValue(ReduxPayload));
}, [changeCard]);

console.log(LvCardState.experience);
const findLv = (e: any) => {};

return (
<div className=" min-w-100 flex flex-row">
<div className=" min-w-[30%] flex flex-col items-center space-y-8 pt-2 pb-2 ">
Expand All @@ -67,6 +68,7 @@ export default function Profile(Props: profileInterface) {
id={xpname[3]}
name={xpname[3]}
defaultValue={`${experience}`}
onChange={findLv}
/>
</div>
<div className=" flex flex-row min-w-full">
Expand Down

0 comments on commit 5bdc990

Please sign in to comment.