i want to use http://bootstrap-notify.remabledesigns.com/ in my react app, i have tried to follow Using bootstrap-notify with Angular 7 but getting error "$.notify is not a function
" in console
Asked
Active
Viewed 234 times
0

Yasir hussan
- 39
- 1
- 3
1 Answers
0
You need the necessary imports:
import $ from "jquery";
import "bootstrap-notify";
You will need to load them using npm i jquery --save
and npm i bootstrap-notify --save
. I also had some compiler errors after installing, which I fixed with: (see here)
npm install --save --save-exact react-scripts@3.4.0