You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
763 B
29 lines
763 B
import { Calendar, ConfigProvider } from 'antd';
|
|
import type { CalendarMode } from 'antd/es/calendar/generateCalendar';
|
|
import type { Dayjs } from 'dayjs';
|
|
import React from 'react';
|
|
|
|
/** Test usage. Do not use in your production. */
|
|
export default () => {
|
|
const onPanelChange = (value: Dayjs, mode: CalendarMode) => {
|
|
console.log(value.format('YYYY-MM-DD'), mode);
|
|
};
|
|
|
|
return (
|
|
<ConfigProvider
|
|
theme={{
|
|
components: {
|
|
Calendar: {
|
|
fullBg: 'red',
|
|
fullPanelBg: 'green',
|
|
itemActiveBg: 'black',
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Calendar onPanelChange={onPanelChange} />
|
|
<br />
|
|
<Calendar onPanelChange={onPanelChange} fullscreen={false} />
|
|
</ConfigProvider>
|
|
);
|
|
};
|
|
|