I am learning react-typescript,
Code -
import {phones} from "../../get_phone";interface IProps { phone: phones,}const Query1: React.FC <IProps> = ({phone}) => { console.log(phone) const [model, setmodel] = useState(phone); console.log(model);}
Is it possible to access the model
variable from other Components and also from other typescript files?
Thanks