Skip to content

Commit ae553e3

Browse files
committed
Fix typescript.
1 parent 99ce644 commit ae553e3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/components/Input.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import dayjs from "dayjs";
2+
import React from "react";
23
import {
34
ChangeEvent,
45
FC,

src/helpers/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dayjs.extend(weekday);
66
dayjs.extend(customParseFormat);
77

88
import { DATE_FORMAT, LANGUAGE } from "../constants";
9-
import { WeekStringType } from "../types";
9+
import { PeriodDay, WeekStringType } from "../types";
1010

1111
export function classNames(...classes: (false | null | undefined | string)[]) {
1212
return classes.filter(Boolean).join(" ");

0 commit comments

Comments
 (0)