all repos — caroster @ c03fa59cf2eb3a188d9dbbb3f9c4f5d959e166c5

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