123456789101112 |
- import {Provider, connect} from 'react-redux';
- import {BrowserRouter as Router, Route, Link, Switch, Redirect} from 'react-router-dom';
- const Links = ({url, text, className = "links"}) => {
- return (
- <li>
- <Link className = {className} to={url}>{text}</Link>
- </li>
- )
- }
- export default Links;
|