This commit is contained in:
skidoodle 2022-04-24 17:41:31 +02:00
parent 4ef7a49d93
commit 3c18df552d
13 changed files with 227 additions and 198 deletions

9
components/dayjs.tsx Normal file
View file

@ -0,0 +1,9 @@
import dayjs from 'dayjs'
import utc from 'dayjs/plugin/utc'
import timezone from 'dayjs/plugin/timezone'
dayjs.extend(utc)
dayjs.extend(timezone)
dayjs.tz.setDefault('Europe/Budapest')
export { dayjs }