all repos — caroster @ b9e807e2b80aee0db2b933366ea7c5a65d090443

[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;