Update link.js

pull/47/head
Ilya 2023-03-10 12:34:42 +02:00
parent eb403e5c10
commit 6c4c7ffa2a
1 changed files with 1 additions and 1 deletions

View File

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