I am working on a project with Fluent UI and React JSX
and my question is how to format date of DatePicker component to be day.month.year
format?
Example:
<DatePicker
...
formatDate={(date) => {
return (date.getMonth() + "." + date.getDate() + "." + date.getFullYear)
}}
/>