javascript - Common js modules in react native -
is possible make use of common js modules react-native? use case sharing logic between mobile , web version of react project.
ok, i'm new think i've figured out how include js code. didn't have add standard react native installation.
create library of code:
//library.js exports.foo = function() { //do stuff here return "here"; } import js file:
var lib = require("./library.js"); var mystring = lib.foo(); i found info blog post:
Comments
Post a Comment