Skip to content

Instantly share code, notes, and snippets.

@kylephughes
Last active October 29, 2021 13:04
Show Gist options
  • Save kylephughes/42c42af7f538de781d2b0dfe23292880 to your computer and use it in GitHub Desktop.
Save kylephughes/42c42af7f538de781d2b0dfe23292880 to your computer and use it in GitHub Desktop.
import { publishNotification } from './notificationService'
const FormComponent = () => {
const handleNotifcation = () => {
publishNotification('Success!')
}
return (
// <button onClick={handleNotification} />
)
}
@mehrdad-shokri
Copy link

Shouldn't this be
import {publishNotification} from './notificationService' ?

@kylephughes
Copy link
Author

@mehrdad-shokri good catch!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment