how to add links in react js code example
Example 1: how to add links in react js
import React from 'react';
import { Link } from 'react-router';
class List extends React.Component {
render() {
return (
Please choose a repository from the list below.
- React
);
}
}
export default List;
Example 2: react link to another page
import { Link } from 'react-router-dom';
classAppextendsComponent {
render() {
return (
);
}
}