I have tried:
import \'maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css\';
but it produces error. How can i import a cdn in my
You can include these lines within your html file:
Or, you can import a local stylesheet file that contains the import instruction. See the example below:
App.js
import './App.scss';
App.scss
@import url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css');