diff options
author | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-12 22:38:47 +0300 |
---|---|---|
committer | Alexander Neonxp Kiryukhin <i@neonxp.ru> | 2024-12-12 22:38:47 +0300 |
commit | c0667f03e363ee5f20a77136a222c4da5beff410 (patch) | |
tree | 6e11ce3b564996f96c135a390944c50f7ad4fd77 /frontend/app.jsx | |
parent | 34ccc98a942098faefb5f4211b215ff9ccc7ad0e (diff) |
Diffstat (limited to 'frontend/app.jsx')
-rw-r--r-- | frontend/app.jsx | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/frontend/app.jsx b/frontend/app.jsx index 60bdcf4..abc1694 100644 --- a/frontend/app.jsx +++ b/frontend/app.jsx @@ -151,7 +151,10 @@ const App = () => { <> <h2>{guess.name}</h2> <Image src={guess.image} /> - <h3>Расстояние: {guess.distance / 1000}км.</h3> + <h3> + Расстояние: {guess.distance / 1000} + км. + </h3> </> ) : null} {state.current_guid && !selected ? ( @@ -171,7 +174,13 @@ const App = () => { </Button> ) : null} </Card> - <p>Сделал <a href="https://neonxp.ru">Александр Кирюхин</a> в 2024 году</p> + <p> + Сделал{" "} + <a href="https://neonxp.ru"> + Александр Кирюхин + </a>{" "} + в 2024 году + </p> </Col> </Row> </Content> |