componentDidMount() {
fetch('./products.json' )
.then((responce) => responce.json())
.then((data) => console.log('data', data))
.then((data) => this.setState({products:data}))
.then(() => console.log('state', this.state))
}