Results 2 comments of Nghiệp

It's works perfect for me. ![image](https://user-images.githubusercontent.com/54924428/99232949-297eaa00-2825-11eb-86b0-91b270f91267.png) Create a `react-image-editor.d.ts` ```ts declare module '@toast-ui/react-image-editor' { import ImageEditor from 'tui-image-editor'; type Props = ConstructorParameters[1]; export default function BaseImageEditor(props: Props): JSX.Element; } ```

@nathanburgess `FilterRowWrapper` should be wrapped by `forwardRef` ```jsx const FilterRowWrapper = forwardRef(funnction FilterRowWrapper(props, ref) { return ... } ) ```