feat: feed code

This commit is contained in:
Smigz 2024-09-03 22:50:29 -04:00
parent 258f170eb0
commit 2e14a05a73
18 changed files with 6279 additions and 0 deletions

View file

@ -0,0 +1,12 @@
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 };