Add datepicker component (#716)

This commit is contained in:
RainLoop Team 2016-06-24 00:57:35 +03:00
parent 8285bf02fe
commit 68890f8083
6 changed files with 39 additions and 0 deletions

7
dev/Component/Date.jsx Normal file
View file

@ -0,0 +1,7 @@
import {componentExportHelper} from 'Component/Abstract';
import {AbstractInput} from 'Component/AbstractInput';
class DateComponent extends AbstractInput {}
module.exports = componentExportHelper(DateComponent, 'DateComponent');