0

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

enter image description here

UPDATE enter image description here

AND in app it's look like this

    const App = () => (
     <div>
        <Nav />
   </div>
);

0 Answers0