feat: create custom markdown separated component

This commit is contained in:
RadoslavDimchev 2023-10-26 08:36:47 +03:00
parent 097b8ab840
commit 2dae9a679a
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import { Link } from 'react-router-dom'
const MarkdownLink = (props: any) => {
return (
<Link to={props.href} target="_blank">
{props.children}
</Link>
)
}
export default MarkdownLink