Qual a melhor forma de importar o Bootstrap e jQuery em um project React?
Nos exemplos com purecss foi feito o import da seguinte forma:
import './css/pure-min.css';
import './css/side-menu.css';
Eu fiz da seguinte forma e obtive erro:
App.js
import React, { Component } from 'react';
import './js/jquery-1.12.2.min.js';
import './js/bootstrap.min.js';
import './css/bootstrap-theme.min.css';
import './css/bootstrap.min.css';
import './App.css';
./src/js/bootstrap.min.js
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 6: 'jQuery' is not defined no-undef
Line 7: 'jQuery' is not defined no-undef
Line 7: 'jQuery' is not defined no-undef
Line 7: 'jQuery' is not defined no-undef
Este é o meu código:
https://github.com/eapmartins/toborrowlend-app/blob/master/src/App.js
Gostaria de adicionar o bootstrap.min.js e jquery-1.12.2.min.js para utilizar alguns componentes.
Abraços,
Edson Martins