mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-04 06:57:12 +01:00
further typing improvements
This commit is contained in:
committed by
Thomas Ruoff
parent
90ac05a907
commit
52a68e9989
@@ -1,18 +1,13 @@
|
||||
import * as React from 'react'
|
||||
import { useEffect, useContext, useState, useRef } from 'react'
|
||||
import useSWR from 'swr'
|
||||
|
||||
import { WizardContext } from './context/wizardStore'
|
||||
|
||||
import 'moment/locale/de'
|
||||
import React, { useContext, useEffect, useRef, useState } from 'react'
|
||||
import { DateUtils, RangeModifier } from 'react-day-picker'
|
||||
import DayPickerInput from 'react-day-picker/DayPickerInput'
|
||||
|
||||
import Required from './required'
|
||||
import { dateFormatBackend } from '../../helpers/date'
|
||||
import { getNextSmaller, getNextBigger } from '../../helpers/array'
|
||||
|
||||
import MomentLocaleUtils from 'react-day-picker/moment'
|
||||
import 'moment/locale/de'
|
||||
import useSWR from 'swr'
|
||||
import { getNextBigger, getNextSmaller } from '../../helpers/array'
|
||||
import { dateFormatBackend } from '../../helpers/date'
|
||||
import { WizardContext } from './context/wizardStore'
|
||||
import Required from './required'
|
||||
|
||||
const fetcher = (path: string) => fetch(path).then((r) => r.json())
|
||||
|
||||
|
||||
Reference in New Issue
Block a user