# Snackbar

You can add the component on any page in the template. You need to follow the steps given below:&#x20;

**Step 1:** You need to create a state and functions to handle it's events. Also you need to add the code of snackbar in the page where you want to add the component. Please check the code snippet given below, we have added the snackbar in the Ecommerce Dashboard:

```
/**
 * Ecommerce Dashboard
 */

import React, { Component } from 'react'
...

export default class EcommerceDashboard extends Component {
    // Snackbar State
	state = {
		open: false,
	};

	// Snackbar Functions
	handleClick = () => {
		this.setState({ open: true });
	};

	handleClose = (event, reason) => {
		if (reason === 'clickaway') {
			return;
		}
		this.setState({ open: false });
	};
	render() {
		...
						// Snackbar Code
						<div>
							<Button variant="contained" color="primary" className="text-white mr-10 mb-10 d-inline-block" onClick={this.handleClick}>simple snackbar</Button>
							<Snackbar anchorOrigin={{ vertical: 'bottom', horizontal: 'left', }}
								open={this.state.open}
								autoHideDuration={6000}
								onClose={this.handleClose}
								message={<span id="message-id">Note archived</span>}
								action={[
									<Button variant="contained" key="undo" className="btn-danger btn-sm text-white" dense="true" onClick={this.handleClose}> UNDO </Button>,
									<IconButton key="close" aria-label="Close" color="inherit" onClick={this.handleClose} >
										<i className="zmdi zmdi-close"></i>
									</IconButton>,
								]}
							/>
						</div>
```

**Step 2:** Now Import the component from its parent library.

```
import Button from '@material-ui/core/Button';
import Snackbar from '@material-ui/core/Snackbar';
import IconButton from '@material-ui/core/IconButton';
```

We have given you an example of adding a simple snackbar on the Ecommerce Dashboard.

![](/files/-LbwkgoXpBezUIRy5Y3D)

![](/files/-LbwkiGfh_cK5U-t7nkR)

You can check some other layouts of snackbar below. For adding any of the below layout in the template, please check their relative code in the `src->routes->components->snackbar->component` folder.

![](/files/-LbvVBBywIQYQxLAOY6T)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://iron-network.gitbook.io/reactify/reactify-redux-thunk-saga/ui-components/snackbar.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
