VITALY-VORON f492f2efb9
All checks were successful
Create and publish a Docker image / Publish image (push) Successful in 57s
Create and publish a Docker image / Deploy image (push) Successful in 6s
main
2023-08-26 06:52:11 +03:00

20 lines
343 B
JavaScript

import React, {useState, useEffect} from "react";
const Main = (props) => {
const city = props.selectedCity;
const id = props.identification;
useEffect(() => {
console.log(city && id);
})
return (
<div>
<span>Переход готов</span>
</div>
);
}
export default Main;