We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Im facing issues when i want to use the useSnakackbar(), also i have the same issue with 1.1.9
App Sample: Codebox sample
The text was updated successfully, but these errors were encountered:
You are using the hook outside of the provider
Sorry, something went wrong.
You have to add SnackbarProvider to the upper component (e.g. App.js)
// App.js import React from 'react' import SnackbarProvider from 'react-simple-snackbar' // <---------- HERE import SomeChildComponent from './SomeChildComponent' export default function App() { return ( <SnackbarProvider> // <---------- HERE <SomeChildComponent /> </SnackbarProvider> // <---------- HERE ) }
No branches or pull requests
Im facing issues when i want to use the useSnakackbar(), also i have the same issue with 1.1.9
App Sample:
Codebox sample
The text was updated successfully, but these errors were encountered: