Jeff Winkler
Jeff Winkler

Reputation: 147

Can I use non react npm packages in react?

This is a newbie question that I have not found an answer to on the net. I would like to use this package in a react app. https://www.npmjs.com/package/zipcodes I have only used react packages so far.

Upvotes: 0

Views: 619

Answers (1)

Maksym Bondarchuk
Maksym Bondarchuk

Reputation: 86

Yes, you can. Same way like with no-react. React community have a lot of plugins, made for react specially, but you have no limits to use any kind of library. Most of them are compatible or require wrapper creation, which will use library with it's imperative usage, but inside react component.

Upvotes: 2

Related Questions