0.0.91 • Published 2 years ago

blip-feedback-footer v0.0.91

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years 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

2 years ago

0.0.8

2 years ago

0.0.91

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago