Skip to content

Commit 225ac68

Browse files
author
mcmcphillips
committedOct 3, 2023
update story
1 parent 7e261e9 commit 225ac68

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎react/components/DateTimeField/DateTimeField.stories.jsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ export default {
1010

1111
export const TimeDateFieldComponent = (args) => {
1212
const [value, setValue] = useState("");
13-
console.log('value is', value)
1413
const handleDateTimeChange = (e) => {
15-
console.log("Handle change triggered", e);
14+
setValue(e.target.value)
1615
};
1716
return (
1817
<div className="qpp-u-padding--16">

0 commit comments

Comments
 (0)
Please sign in to comment.