Я новичок в реакции на родную.Это часть App.js
<Button
title="LOGIN"
onPress={() =>
{
{{this.componentDidMount(this.state.city)}}
}
}
/>
Я хочу отправить "this.state.city" в мой другой js-файл "Form.js".
И это 'Form.js '
import React from 'react';
import { FlatList, ActivityIndicator, Text, View } from 'react-native';
class Form extends React.Component {
constructor(props){
super(props);
this.state ={ isLoading: true}
}
componentDidMount(){
const api_key="there_is_an_api_key";
const city="ankara"
// I want that variable here
Спасибо за помощь