12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
import { Link } from "react-router-dom";
|
|
import PropTypes from "prop-types";
|
|
|
|
const HashTagLink = ({ tag }) => {
|
|
return <a href="#">{tag}</a>;
|
|
};
|
|
|
|
HashTagLink.propTypes = {
|
|
tag: PropTypes.string,
|
|
};
|
|
|
|
export { HashTagLink };
|