diff options
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> |