pull/47/head
Ilya 2023-03-10 13:08:12 +02:00
parent 6c4c7ffa2a
commit 1dc99fb133
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
node_modules
build
Status v1.0.rar
Status v1.0.rar
Status v1.1.rar

View File

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