react-router
Here are 6,066 public repositories matching this topic...
-
Updated
Jul 13, 2020 - TypeScript
-
Updated
Jun 12, 2020 - JavaScript
-
Updated
Jul 11, 2020 - JavaScript
I'm not sure in which repository should open this kind of issues so I just open it on the main one, but you can point me to the correct one any time.
I noticed that rekit uses (or pretends to use) prettier as code formatter.
You should rather include it in the package.json of the template as a dependency o explain on the documentation that it is an opt-in feature and that it should be installe
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { test } from '@/actions/common'
import store from '@/store'
import { push } from 'connected-react-router'
import PropTypes from 'prop-types'
@connect((state) => ({ home: state.home }), { test })
class Home extends Component {
static propTypes = {
test: PropTypes.func.isRequired
}
componentDi
-
Updated
Jul 12, 2020 - JavaScript
Serverless Stack tutorial showing use of Angular instead of React, with hosting in AWS using serverless-s3-sync instead of netlify for a purely AWS services based development stack experience ?
Any plans for that?
If not, I'm willing to contribute, as I have certain degree of experience with it.
We have a lot of comments that we added in when the repository was created.
In many cases, we should either write self-documenting code, as comments are at best, a necessary evil.
If we cannot change the function/variable names to be self-explanatory, we should consider extracting that into README.
@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!
Under branch 10-player-input, inside app/index.css, https://github.com/tylermcginnis/react-course/blob/10-player-input/app/index.css:
Under this btn class: text-decoration: uppercase; should have been text-transform: uppercase;
.btn {
padding: 10px;
text-decoration: uppercase;
letter-spacing: .25em;
border-radius: 3px;
border: none;
font-size: 16px;
display: f
-
Updated
Jul 1, 2020 - JavaScript
I'm trying to migrate from v1 to v2 of redux-auth-wrapper. I'm sticking with RR3 for the moment since I'm using SSR and it will be a larger undertaking to migrate everything to RR4 (though I do want to migrate eventually).
That being said, I'm running into some issues with getting everything working like it was under v1. To summarize, I'm not sure how to get a FailureComponent working under v
-
Updated
Jul 3, 2017 - JavaScript
It would be great if the little buttons below each track were clickable, allowing us to:
- Play
- Like/Favorite
- Repost
- Comment
- Download
- Buy (in many cases this actually redirects to an external download page)
-
Updated
Nov 25, 2019 - JavaScript
The API docs reference the function store.getState() multiple times, but doesn't provide any documentation on how to obtain the store object to call that function.
I found through trial and error that you can access the store object in the following manner:
import { store } from 'mirrorx/lib/store';
...
store.getState();
This information should probably exist in the API pa
-
Updated
Jun 28, 2017 - JavaScript
-
Updated
Jun 29, 2020 - JavaScript
-
Updated
Jun 6, 2020 - Java
-
Updated
Jun 30, 2020 - JavaScript
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Jul 12, 2020 - TypeScript
-
Updated
May 25, 2020 - JavaScript
THis seems to be the only code i came across that integrates firebase+react+es6+redux. would love a video/written tutorial , so a newbie like be can understand. thanks in advance.
-
Updated
Jun 5, 2020 - JavaScript
-
Updated
Jun 6, 2020 - JavaScript
I use the MacOS system,but I don't know how to do it,could you give me a user's guide?
Improve this page
Add a description, image, and links to the react-router topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the react-router topic, visit your repo's landing page and select "manage topics."

Type of issue: (feature suggestion, bug?)
Suggestion
Chapter:
no-chapter
Why use
.jsxinstead of.js? It's not a best practice: facebook/create-react-app#87 (comment)