Material-UI: either `image` or `src` property must be specified
问题 Its looks like CardMedia need an image while component is created. Since I am pulling the image data via componentDidMount (RestAPI) then the component is already mount. componentDidMount() { // get all items via category ID and owner ID const restApi = new API({ url: 'api' }) restApi.createEntity({ name: 'items' }) // api/items/<categoryId>/<ownerId> restApi.endpoints.items.getTwo({ id_a: this.props.categoryId, id_b: this.props.ownerId }).then(({ data }) => this.setState({ appData: data }))