import * as React from 'react'; import { Calendar, DayOfWeek, defaultDayPickerStrings, DateRangeType } from '@uifabric/date-time'; import { mergeStyleSets } from '@uifabric/styling'; const styles = mergeStyleSets({ wrapper: { height: 360 }, button: { margin: '17px 10px 0 0' }, dropdown: { width: 230 }, }); export const CalendarInlineExample = () => { const [selectedDate, setSelectedDate] = React.useState(new Date()); return (
Selected date(s): {!selectedDate ? 'Not set' : selectedDate.toLocaleString()}
); };