I am writing an application with create-react-app with redux , react-redux and react-router . Whenever I click Link as follows:
import React from 'react' import { Link } from 'react-router' import ThingCard from '../../components/ThingCard' const ThingsList = ({things}) => { return ( <ul> {things.map(thing => <Link to={"/things/"+thing.id} key={thing.id}><ThingCard thing={thing}/></Link> )} </ul> ) } export default ThingsList
I see the following warnings in my console. I have no idea where they come from or what they mean. Google search did not bring any useful results. Can these warnings be safely ignored, if not, how can I find out more about them? I believe this problem prevents the parent page from displaying its children.

I disabled all network requests.
EDIT: This error only appears in Chrome Canary, not in Google Chrome. However, Google Chrome does not display children correctly (perhaps due to this problem).
source share