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.
26 lines
672 B
26 lines
672 B
import { Calendar, theme } from 'antd';
|
|
import type { CalendarMode } from 'antd/es/calendar/generateCalendar';
|
|
import type { Dayjs } from 'dayjs';
|
|
import React from 'react';
|
|
|
|
const onPanelChange = (value: Dayjs, mode: CalendarMode) => {
|
|
console.log(value.format('YYYY-MM-DD'), mode);
|
|
};
|
|
|
|
const App: React.FC = () => {
|
|
const { token } = theme.useToken();
|
|
|
|
const wrapperStyle: React.CSSProperties = {
|
|
width: 300,
|
|
border: `1px solid ${token.colorBorderSecondary}`,
|
|
borderRadius: token.borderRadiusLG,
|
|
};
|
|
|
|
return (
|
|
<div style={wrapperStyle}>
|
|
<Calendar fullscreen={false} onPanelChange={onPanelChange} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
|