Cet.props non défini React natif
I think you're missing the following, try replacing your constructor:
constructor(props) {
super(props);
console.log(this.props)
}
Lokesh003