React 17 Release Candidate. Two years after launching React v16… | by Classic Reagan | Sep, 2020 | Bits and Pieces
https://blog.bitsrc.io/all-you-need-to-know-about-react-v17-0-release-candidate-9f6d776a8fca
https://blog.bitsrc.io/all-you-need-to-know-about-react-v17-0-release-candidate-9f6d776a8fca
Medium
React 17 Release Candidate
Two years after launching React v16, the React team recently launched the first released candidate of React v17. Surprisingly, it doesn’t…
import React from 'react';
import { Link, withRouter } from 'react-router-dom';
import { Menu } from 'antd';
const Linkmenu = withRouter(props => {
const { location } = props;
return (
<Menu mode="inline" selectedKeys={[location.pathname]}>
<Menu.Item key="/">
<Link to="/">Home </Link>
</Menu.Item>
<Menu.Item key="/about">
<Link to="/about">About</Link>
</Menu.Item>
</Menu>
);
});
export default Linkmenu;
import { Link, withRouter } from 'react-router-dom';
import { Menu } from 'antd';
const Linkmenu = withRouter(props => {
const { location } = props;
return (
<Menu mode="inline" selectedKeys={[location.pathname]}>
<Menu.Item key="/">
<Link to="/">Home </Link>
</Menu.Item>
<Menu.Item key="/about">
<Link to="/about">About</Link>
</Menu.Item>
</Menu>
);
});
export default Linkmenu;
enaqx/awesome-react: A collection of awesome things regarding React ecosystem
https://github.com/enaqx/awesome-react
https://github.com/enaqx/awesome-react
GitHub
GitHub - enaqx/awesome-react: A collection of awesome things regarding React ecosystem
A collection of awesome things regarding React ecosystem - enaqx/awesome-react
sivadass/react-shopping-cart: Easily integrate React Shopping Cart into your existing website without using Redux.
https://github.com/sivadass/react-shopping-cart
https://github.com/sivadass/react-shopping-cart
GitHub
GitHub - sivadass/react-shopping-cart: Easily integrate React Shopping Cart into your existing website without using Redux.
Easily integrate React Shopping Cart into your existing website without using Redux. - sivadass/react-shopping-cart
jeffersonRibeiro/react-shopping-cart: 🛍️ Simple ecommerce cart application built with React Redux
https://github.com/jeffersonRibeiro/react-shopping-cart
https://github.com/jeffersonRibeiro/react-shopping-cart
GitHub
GitHub - jeffersonRibeiro/react-shopping-cart: 🛍️ Simple ecommerce cart application built with Typescript and React
🛍️ Simple ecommerce cart application built with Typescript and React - jeffersonRibeiro/react-shopping-cart
11 Useful Custom React Hooks for Your Next Web App | by Chidume Nnamdi 🔥💻🎵🎮 | Bits and Pieces
https://blog.bitsrc.io/11-useful-custom-react-hooks-for-your-next-app-c66307cf0f0c
https://blog.bitsrc.io/11-useful-custom-react-hooks-for-your-next-app-c66307cf0f0c
Medium
11 Useful Custom React Hooks for Your Next Web App
Top 11 recommended ReactJS custom Hooks — with examples.