Update link.js

pull/47/head
Ilya 2023-03-10 13:02:08 +02:00 committed by GitHub
parent 6c4c7ffa2a
commit fe5b4bbfd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
function Link(props = { text, to }) { function Link(props = { text, to }) {
return ( return (
<a {...props} href={props.to} target='_self'> <a {...props} href={props.to} target='_blank'>
{props.text} {props.text}
</a> </a>
); );