𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /home/builxejc/public_html/wp-content/plugins/site-mailer/modules/reviews/assets/src//app.js
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;