0.0.91 • Published 12 months ago

blip-feedback-footer v0.0.91

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months ago

Blip Feedback Footer

preview

A footer component that allows users to leave feedback in blip extensions

Installation

To install this package using npm, run:

npm i blip-feedback-footer

Usage

You can call the component and pass the props, like the following example:

// App.tsx
// ...
import { FeedbackFooter } from 'blip-feedback-footer';
// Optional
import { useTranslation } from 'react-i18next';

const App = () => {
    const { i18n } = useTranslation('notification');

    return (
        <StrictMode>
            <Routes />
            <FeedbackFooter
                // This prop accepts "pt", "en" or "es"
                language={i18n.language}
                onSubmit={(values) => {
                    // Submission logic
                }}
            />
        </StrictMode>
    );
};

export default App;
0.0.9

12 months ago

0.0.8

12 months ago

0.0.91

12 months ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago