package cleanup

This commit is contained in:
Labhansh Agrawal 2023-07-25 12:31:01 +05:30
parent 343eef40fb
commit 33f7d2bad5
4 changed files with 19 additions and 18 deletions

View file

@ -1,7 +1,7 @@
import React, {forwardRef} from 'react';
import type {StyleSheetProps} from '../hyper';
const StyleSheet: React.FC<StyleSheetProps> = forwardRef<HTMLStyleElement, StyleSheetProps>((props, ref) => {
const StyleSheet = forwardRef<HTMLStyleElement, StyleSheetProps>((props, ref) => {
const {borderColor} = props;
return (

View file

@ -5,7 +5,7 @@ import rootReducer from '../reducers/index';
import effects from '../utils/effects';
import * as plugins from '../utils/plugins';
import writeMiddleware from './write-middleware';
import {composeWithDevTools} from 'redux-devtools-extension';
import {composeWithDevTools} from '@redux-devtools/extension';
import type {HyperState, HyperActions} from '../hyper';
const thunk: ThunkMiddleware<HyperState, HyperActions> = _thunk;