Skip to content
Advertisement

implementing page javascript in next/react component

I am trying to implement a project like:

https://codepen.io/andytran/pen/GpyKLM

As you can see there is javascript that is needed for the page to function. I am trying to build a Next/React component that implements this code:

JavaScript

Where would I put the javascript in the above example? Also, how would I call code from a scss file?

Advertisement

Answer

What you do is anti-pattern, instead of importing bootstrap from a CDN you can use reactstrap package.

for element listeners, must pass those to each element that you want, like onClick:

JavaScript

and for using SCSS in your next app, first you have to install the sass package:

JavaScript

then reload the dev server and import SCSS file in component, e.g:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement