Skip to content

Commit

Permalink
Update type importing for TS5 verbatimModuleSyntax
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Apr 17, 2023
1 parent 599322c commit d4394bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/usersContexts.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createContext, ReactElement, useContext, useState } from "react";
import { createContext, type ReactElement, useContext, useState } from "react";
import { getStorageUsers, setStorageUsers } from "./storage";

const usersContext = createContext<string[]>([]);
Expand Down
2 changes: 1 addition & 1 deletion src/session/Interval.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ChangeEvent, useCallback } from "react";
import { type ChangeEvent, useCallback } from "react";

import TextInput from "../common/TextInput";

Expand Down

0 comments on commit d4394bb

Please sign in to comment.