# valueFormat

* component : \<Datepicker />, \<Rangepicker />
* requird : false
* type : string
* default: "YYYY-MM-DD"

Input의 Value Formatter 입니다. 아래 약속된 키워드들이 치환합니다.

* YYYY : year
* MM : month
* DD : date
* hh : hour
* mm : minute
* ss : second

만약 `timeselector` 옵션이 `true` 라면Default 값은 `YYYY-MM-DD hh:mm:ss` 가 됩니다.

```tsx
<Datepicker valueFormat="MM/DD/YYYY" />
```
