redux-modal icon indicating copy to clipboard operation
redux-modal copied to clipboard

how to use with typecript?

Open crazy9001 opened this issue 6 years ago • 2 comments

My project using typescript, however I can't use image

crazy9001 avatar Oct 15 '19 15:10 crazy9001

Have you tried factoring out 'React-bootstrap' and using your own styling? That may help.

MonteLogic avatar Oct 20 '19 00:10 MonteLogic

You'll need to combine your props to include InjectedProps from redux-modal

Something like this:

import { InjectedProps } from 'redux-modal';
export type CombinedProps = YourProps & InjectedProps;

AlexCatch avatar Jan 12 '20 03:01 AlexCatch