Posts by Derik Nyvo • 1 point
1 post
-
-1
votes1
answer42
viewsA: How to import an external library into REACT.JS
First you have to install lib using for example npm. npm install nome_lib Then in the code use import RecursoDaLib from 'name_lib'; For example, if you want to add the Rxjs library to React, you…