UNPKG

@eccenca/gui-elements

Version:

Collection of low-level GUI elements like Buttons, Icons or Alerts. Also includes core styles for those elements.

26 lines (21 loc) 578 B
import React from 'react'; import PerformanceMixin from '../../mixins/PerformanceMixin'; import Datefield from './DateField'; /** * This Component creates a date and time input field based on DateField. */ const DateTimefield = React.createClass({ mixins: [PerformanceMixin], displayName: 'DateTimefield', getDefaultProps() { return { timeFormat: 'HH:mm', dateFormat: 'DD-MM-YYYY', }; }, // template rendering render() { return <Datefield {...this.props} />; }, }); export default DateTimefield;