# extendify/3.0.4/src/Launch/components/LoadingIndicator.jsx

Extendify, version 3.0.4. 8 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.0.4/code/src/Launch/components/LoadingIndicator.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.0.4/raw/src/Launch/components/LoadingIndicator.jsx
- Modified: 2023-11-14T03:13:36+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/3.0.4/code/src/Launch/components/LoadingIndicator.jsx#L10-L20`.

```jsx
import { __ } from '@wordpress/i18n';

export const LoadingIndicator = () => (
	<p className="w-full text-center text-base text-gray-700">
		{__('Loading...', 'extendify-local')}
	</p>
);

```
