all repos — caroster @ 406456e1af7399c4bf12340f443334a004070db9

[Octree] Group carpool to your event https://caroster.io

frontend/containers/DetailsLink/index.tsx (view raw)

 1import Link from "@mui/material/Link";
 2import { IntermediateRepresentation } from "linkifyjs";
 3
 4const DetailsLink = ({attributes, content}: IntermediateRepresentation) => {
 5  return (
 6    <Link {...attributes} target="_blank">
 7      {content}
 8    </Link>
 9  );
10};
11
12export default DetailsLink;