/react-feedback-popup

Feedback popup for react apps.

Primary LanguageCSSMIT LicenseMIT

React Feedback Popup

alt tag

Feedback popup for react apps.

Getting Started:

Install react-feedback-popup using npm or yarn.

npm i github:esoytekin/react-feedback-popup

yarn add github:esoytekin/react-feedback-popup

Import library, and default stylesheet.

import { ReactFeedbackPopup } from "react-feedback-popup";

import "react-feedback-popup/lib/react-feedback-popup.css"

How to use:

Simple Case:

import { ReactFeedbackPopup } from 'react-feedback-popup';

    <ReactFeedbackPopup
        onSubmit={data => {
            console.log('data', data);
        }}
    />
}