Good morning,
I am totally new in the world of ReactJS. I am trying to make a trial app and I find the following.
These are my files:
BtnLink.jsx:
var BtnLink = new React.createClass({
render : function(){
return(...
I am learning about Frontend technologies and I am learning how to use Browserify and I have been using the '' modular '' definition with Browserify. I hope someone can tell me what modular means and what it is for. Thanks in advance.
I have this project where I connect with an api of series and I do it modularly using browserify but the web app does not want to connect with the api even though the console does not throw an error when I execute it with the command, I do not k...
I have the following code:
'use strict';
var counterpart = require('counterpart');
var Translate = require('react-translate-component');
I compile it with Browserify:
browserify nuevo.js > locale.js
I import the file locale.js in...