Chuyển tới nội dung chính

DatePicker

Tạo giao diện cho phép người dùng lựa chọn ngày tháng

Properties

DatePicker

Type

DatePickerActionType

Example

import React from "react";
import { Box, Text, DatePicker, Page } from "zmp-ui";

export default function PageDatePicker() {
return (

<Text.Title size="small">Date Picker</Text.Title>
<Box mt={2}>
<Text size="xSmall" className="input-desc">
Để chọn nội dung ngày/tháng/năm
</Text>
<Text size="xSmall" className="input-desc">
Bấm chỗ nào cũng trigger chung 1 action, ko cho nhập text
</Text>
</Box>
<Box mt={6}>

</Box>
<Box mt={6}>

</Box>
<Box mt={6}>

</Box>

);
}