# extendify/0.10.0/src/Library/components/notices/FeedbackNotice.js

Extendify, version 0.10.0. 32 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.10.0/code/src/Library/components/notices/FeedbackNotice.js
- Raw: https://pluginprobe.com/plugins/extendify/0.10.0/raw/src/Library/components/notices/FeedbackNotice.js
- Modified: 2022-08-25T21:16:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/0.10.0/code/src/Library/components/notices/FeedbackNotice.js#L10-L20`.

```javascript
import { Button } from '@wordpress/components'
import { __ } from '@wordpress/i18n'
import { General } from '@library/api/General'

export default function FeedbackNotice() {
    return (
        <>
            <span className="text-black">
                {__(
                    'Tell us how to make the Extendify Library work better for you',
                    'extendify',
                )}
            </span>
            <span className="px-2 opacity-50" aria-hidden="true">
                &#124;
            </span>
            <div className="flex items-center justify-center space-x-2">
                <Button
                    variant="link"
                    className="h-auto p-0 text-black underline hover:no-underline"
                    href={`https://extendify.com/feedback/?utm_source=${window.extendifyData.sdk_partner}&utm_medium=library&utm_campaign=feedback-notice&utm_content=give-feedback`}
                    onClick={async () =>
                        await General.ping('feedback-notice-click')
                    }
                    target="_blank">
                    {__('Give feedback', 'extendify')}
                </Button>
            </div>
        </>
    )
}

```
