UNPKG

presale-demo-pe

Version:

This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).

25 lines (20 loc) 363 B
import React, { PropTypes } from 'react'; import './Link.css'; const Link = ({ url, text }) => { return ( <a href={url} className="link" > {text} </a> ) }; Link.defaultProps = { url: '/' }; Link.propTypes = { url: PropTypes.string, text: PropTypes.string }; export default Link;