wix-style-react
Version:
wix-style-react
22 lines (17 loc) • 514 B
JavaScript
import TimeInput from 'wix-style-react/TimeInput';
export default {
category: '3. Inputs',
storyName: '3.4 TimePicker',
component: TimeInput,
componentPath: '../src/TimeInput', // TODO: move folder to TimePicker to align with component name
exampleImport: 'import TimePicker from \'wix-style-react/TimeInput\';',
componentProps: {
dashesWhenDisabled: false,
disabled: false
},
exampleProps: {
onChange: function onChange(moment) {
return moment.format('h:mm a');
}
}
};