react use link ons code example
Example: 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;