feat: feed code
This commit is contained in:
parent
258f170eb0
commit
2e14a05a73
18 changed files with 6279 additions and 0 deletions
12
changelog-app-ui/src/components/links.jsx
Normal file
12
changelog-app-ui/src/components/links.jsx
Normal 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 };
|
Loading…
Add table
Add a link
Reference in a new issue