Skip to content

Commit d23fe5c

Browse files
author
mcmcphillips
committedOct 2, 2023
decouple the design system with shared.
1 parent 155bab6 commit d23fe5c

File tree

185 files changed

+16380
-26
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+16380
-26
lines changed
 

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ export default {
1010

1111
export const TimeDateFieldComponent = (args) => {
1212
const [value, setValue] = useState("");
13-
const handlDateTimeChange = (e) => {
14-
console.log("Handle change triggered", e.target.value);
15-
setValue(e.target.value);
13+
console.log('value is', value)
14+
const handleDateTimeChange = (e) => {
15+
console.log("Handle change triggered", e);
1616
};
1717
return (
1818
<div className="qpp-u-padding--16">
1919
<DateTimeField
20-
disabled={true}
20+
// disabled={true}
2121
label="Status Date/Time"
22-
handlDateTimeChange={handlDateTimeChange}
22+
handleDateTimeChange={handleDateTimeChange}
2323
dateTimeValue={value}
2424
/>
2525
</div>

‎react/fonts/FontAwesome.otf

132 KB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.