fabioshub / react-push-notification

Push notification library for React.js
46 stars 18 forks source link

Not Working !! #13

Open sinhaniik opened 8 months ago

sinhaniik commented 8 months ago

I Tried this code on my windows machine with chrome as a browser but code does not works

`import addNotification from 'react-push-notification'; import './App.css'

function App() { const buttonClick = () => { addNotification({ title: 'Warning', subtitle: 'This is a subtitle', message: 'This is a very long message', theme: 'darkblue', duration: 5000, native: true // when using native, your OS will handle theming. }); };

return (

); }

export default App`

laladeveloper commented 6 months ago

You have to add a button which should have an onclick={buttonClick} function then it will work

laladeveloper commented 6 months ago

Update your code as follows `import addNotification from 'react-push-notification'; import './App.css'

function App() { const btnClicked = () => { addNotification({ title: 'Warning', subtitle: 'This is a subtitle', message: 'This is a very long message', theme: 'darkblue', duration: 5000, native: true // when using native, your OS will handle theming. }); };

return (

Hello world.

); } export default App`

fabioshub commented 2 months ago

!!