Skip to content
#

redux-saga

Here are 2,363 public repositories matching this topic...

react-boilerplate
vivek9716
vivek9716 commented Apr 25, 2020

Before opening a new issue, please take a moment to review our community guidelines to make the contribution process easy and effective for everyone involved.

Description

A clear and concise description of what the bug is.

Steps to reproduce

Steps to reproduce the behavior:

(Add link to a dem

hannojg
hannojg commented Aug 9, 2019

I have issues to get Reactotron working in my jest react-native test environment.
Before running a test I simply do
jest.mock("reactotron-react-native");, but then I receive an error stating
TypeError: Cannot read property 'useReactNative' of undefined
![Screenshot 2019-08-09 at 18 01 26](https://user-images.githubusercontent.com/16821682/62792504-bd64b080-bacf-11e9-96a8-0d33089332ac.pn

justin808
justin808 commented May 1, 2020

https://github.com/shakacode/react_on_rails/blob/master/docs/basics/recommended-project-structure.md

Instead, let's consider recommending leaving package.json and node_modules at the top-level...

There are no big advantages of having this be inside of the /client directory and there are a few additional bits of unnecessary complexity.

@ashgaliyev please add to this discussion.

cwinl
cwinl commented Aug 10, 2019

错误:
Could not find method implementation() for arguments [com.facebook.react:react-native:+] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

怀疑是gradle问题

参考如下链接:
react-native-community/react-native-localize#13 (comment)

编辑 android/build.gradle 和 android/gradle/wrapper/gradle-wrapper.properties
修改为3.0

mininternet
mininternet commented Feb 9, 2018

@diegohaz - i noticed a couple of minor spelling errors on the main site:

Basic stack
It includes everything necessary to build a tipical web app with focus on productivity and developer experience.
Learn more about the recomended workflow

Should be typical, and recommended.

Just an FYI.

Thanks!

kopax
kopax commented Oct 27, 2019

Hi guys, I am parisien aussi and pleased that I have found a boilerplate to get started with react-native. I have never developed react-native application before but I am considering making one with your boilerplate. I use ReactJS, redux, saga so it would make sense to start with native for a simple app.

Current [React-Native version is v0.61.1](https://github.com/facebook/react-native/release

mikecann
mikecann commented Jan 31, 2018

I like the example that you give in the Readme but when you open the example in the example folder its much simpler and doesnt seem to take advantage of that beautiful syntax you show in the readme.

It would be great if you could show a more complex example, perhaps one that does an api request too, to show how you handle async actions?

minooo
minooo commented Feb 6, 2017

一个良好的代码规范,不仅能提升web性能,提高团队协作,还便于后期维护,拓展。
“代码即文档”是我们对规范的一个愿景。下面就基于ES6的React项目配置,谈几点对React组件规范的几点建议。

我们的组件分为两大类,UI组件和container组件。

UI组件

UI组件是构成前端界面的基础单元,它们不涉及业务逻辑,无生命周期函数,只负责单纯的渲染,所有数据都通过 props 传入。

一, 咱们的UI组件大致分为两种情况,无状态和有状态

  • 如果是无状态组件,则使用纯函数,我们大部分的UI组件都是这种纯函数。
import React from 'react'

export default ({ hello }) => (
  <div>{hello}</div>
);
  • 如果是有状态组
leonardolessa
leonardolessa commented Jun 19, 2019

I'm very unexperienced with Firebase so i'm not sure if its a legit issue.
I'm trying to grab user information from the info returned from signInWithPopup and according to the firebase docs the method should return UserCredential (https://firebase.google.com/docs/reference/js/firebase.auth.Auth.html#signinwithpopup) that would solve my problem.
But according to redux-saga-firebase the object ret

Improve this page

Add a description, image, and links to the redux-saga topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the redux-saga topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.