123456789101112131415161718192021222324import React,{ ReactElement }from"react";import{ Link }from"@react-md/link";import{ Text }from"@react-md/typography";exportdefaultfunctionDemo(): ReactElement {return(<Texttype="body-2">
This link to{" "}<Linkhref="https://google.com"target="_blank">
google.com
</Link>{" "}
will be updated to prevent malicious scripts from Google, while this link
to{" "}<Linkhref="https://www.w3.org/"target="_blank"preventMaliciousTarget={false}>
w3.org
</Link>{" "}
will not.
</Text>);}