# Feedback & Communication / Feedback Submitted Feedback submission success confirmation with reference number and next steps. **Category:** Patterns **Storybook:** https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-feedback-submitted--introduction ## Pattern variants - Feedback Submitted: https://doc.ux4g.gov.in/web/?path=/story/ux4g-patterns-feedback-communication-feedback-submitted--feedback-submitted ## When to use this pattern Use Feedback & Communication / Feedback Submitted when building citizen-facing flows that match the described government journey. Combine components such as cards, forms, tables, buttons, and status indicators as shown in Storybook. ## Framework setup ### HTML / CDN ```html ``` ### React ```bash npm install ux4g-web-components ``` ```jsx import 'ux4g-web-components/styles.css'; import 'ux4g-web-components/design-system'; ``` ### Angular Update `angular.json`: ```json { "styles": [ "node_modules/ux4g-web-components/styles/ux4g.css", "src/styles.css" ], "scripts": [ "node_modules/ux4g-web-components/dist/runtime/design-system.js" ] } ``` ## Code examples The snippets below are extracted from the Storybook canvas for Feedback & Communication / Feedback Submitted. Each example shows the rendered HTML, the equivalent React JSX, and the Angular template markup. ### 1. Feedback Submitted — Feedback Submitted HTML: ```html
``` React: ```jsx import React from 'react'; const FeedbackCommunicationFeedbackSubmittedExample1Demo = () => ( <>
thumb_up

Feedback submitted

Thank you for your feedback. This helps improve government services.

); export default FeedbackCommunicationFeedbackSubmittedExample1Demo; ``` Angular: ```html
``` ### 2. Introduction — Introduction HTML: ```html
Patterns

Feedback Submitted

Feedback submission success confirmation with reference number and next steps.

task_alt

Feedback Submitted

Feedback submission success screen with reference number and acknowledgement.

``` React: ```jsx import React from 'react'; const FeedbackCommunicationFeedbackSubmittedExample2Demo = () => ( <>
Patterns

Feedback Submitted

Feedback submission success confirmation with reference number and next steps.

task_alt

Feedback Submitted

Feedback submission success screen with reference number and acknowledgement.

); export default FeedbackCommunicationFeedbackSubmittedExample2Demo; ``` Angular: ```html
Patterns

Feedback Submitted

Feedback submission success confirmation with reference number and next steps.

task_alt

Feedback Submitted

Feedback submission success screen with reference number and acknowledgement.

```