# extendify/0.11.0/src/Onboarding/components/RetryNotice.js

Extendify, version 0.11.0. 18 lines.

- Page: https://pluginprobe.com/plugins/extendify/0.11.0/code/src/Onboarding/components/RetryNotice.js
- Raw: https://pluginprobe.com/plugins/extendify/0.11.0/raw/src/Onboarding/components/RetryNotice.js
- Modified: 2022-05-27T00:51:26+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.11.0/code/src/Onboarding/components/RetryNotice.js#L10-L20`.

```javascript
import { Snackbar } from '@wordpress/components'
import { __ } from '@wordpress/i18n'

export const RetryNotice = () => {
    return (
        <div className="extendify-onboarding w-full fixed bottom-4 px-4 flex justify-end z-max">
            <div className="shadow-2xl">
                <Snackbar>
                    {__(
                        'Just a moment, this is taking longer than expected.',
                        'extendify',
                    )}
                </Snackbar>
            </div>
        </div>
    )
}

```
