# image-optimization/1.7.4/modules/reviews/assets/src/app.js

Image Optimizer – Compress Images and Convert to WebP or AVIF, version 1.7.4. 20 lines.

- Page: https://pluginprobe.com/plugins/image-optimization/1.7.4/code/modules/reviews/assets/src/app.js
- Raw: https://pluginprobe.com/plugins/image-optimization/1.7.4/raw/modules/reviews/assets/src/app.js
- Modified: 2026-01-20T08:04:18+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/image-optimization/1.7.4/code/modules/reviews/assets/src/app.js#L10-L20`.

```javascript
import ReviewNotifications from './components/notification';
import { useSettings } from './hooks/use-settings';
import UserFeedbackForm from './layouts/user-feedback-form';

const ReviewsApp = () => {
	const {
		notificationMessage,
		notificationType,
	} = useSettings();

	return (
		<>
			<UserFeedbackForm />
			<ReviewNotifications message={ notificationMessage } type={ notificationType } />
		</>
	);
};

export default ReviewsApp;

```
