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