fix: type imports

This commit is contained in:
Ivan Shmidt
2020-05-18 18:52:41 +02:00
parent aa1eaf4b33
commit f3da9cd7ef
+1 -1
View File
@@ -15,7 +15,7 @@
*/
import React, { FC, useReducer, Dispatch, Reducer } from 'react';
import { circleCIApiRef } from '../api';
import { State, Action, SettingsState } from './types';
import type { State, Action, SettingsState } from './types';
export { SettingsState };
export const AppContext = React.createContext<[State, Dispatch<Action>]>(