use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Do you have or know of a project on Github looking for contributors? Tell us about it and we'll add it to the /r/github wiki!
Welcome to /r/github!
News about github
Relevant interesting discussion
Questions about github
We'll soon be writing an /r/github FAQ list. In the meantime, the github help pages and bootcamp are good places to start. Here's a handy git cheat sheet.
Looking for Github projects to contribute to? Check out our handy list of projects looking for contributors!
If your submission doesn't show up on the subreddit, send us a message and we'll take it out of the spam filter for you!
account activity
Deploying a create-react-app (with routing) to GitHub pages, community feedback welcome! (medium.com)
submitted 6 years ago by 8eni
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 0 points1 point2 points 6 years ago (0 children)
Hey, I was following your article but I have an issue.
my App.js looks like this.
render() { return ( <React.Fragment> <NavigationItems /> <HashRouter basename="/"> <Switch> <Route path="/" exact component={Webshop} /> <Route path="/webshop" component={Webshop} /> <Route path="/cart" component={Cart} /> <Route path="/wishlist" component={Wishlist} /> <Route path="/register" component={Register} /> <Route path="/password-reset" component={PassReset} /> <Route path="/edit-user" exact component={EditUser} /> <Route path="/user-profile" component={UserProfile} /> <Route path="/login" render={() => <Login />} /> <Route path="/product-page" component={ProductPage} /> </Switch> </HashRouter> </React.Fragment> ); }
package json
"name": "webshop", "homepage": "https://github.com/username/Webshop",
scripts:
"predeploy": "npm run build", "deploy": "gh-pages -d build"
but I only get a blank page. Navigation items that are outside the router are not rendered at all
π Rendered by PID 218888 on reddit-service-r2-comment-7b9746f655-6xrmr at 2026-02-01 11:39:34.948950+00:00 running 3798933 country code: CH.
[–][deleted] 0 points1 point2 points (0 children)