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
x
27
27
1
import React, { Component } from 'react';
2
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
3
4
5
6
7
class Auth extends Component {
8
9
render() {
10
11
return (
12
<div className="App">
13
<Header></Header>
14
<div className="container mrgnbtm">
15
<div className="row">
16
<div>
17
hello
18
</div>
19
</div>
20
</div>
21
</div>
22
);
23
}
24
}
25
26
export default Auth;
27
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
1
2
1
<div id="button" onClick={() => alert("button clicked!")} .
2
and for using SCSS in your next app, first you have to install the sass
package:
JavaScript
1
2
1
npm install sass --save
2
then reload the dev server and import SCSS file in component, e.g:
JavaScript
1
2
1
import styles from '../../styles/Home.module.scss'
2