In home file
const OnSubmitFevorites = (e) => {
e.preventDefault();
alert('hellow')
const Form_data = [this.state.value.label, this.state.today_date]
console.log('Form_data' + JSON.stringify(Form_data));
}
<Home Fevorites={this.OnSubmitFevorites} />
This is where I want to get the Form_data and send to Fevorites file
AND in app it's look like this
const App = () => (
<div>
<Nav />
</div>
);