all repos — caroster @ 1612fe42101ebc0ab86492e9e6c0ceed14c878d1

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