'React - How do you use onlyFetch prop from Opengraph-react?

I am using https://www.npmjs.com/package/opengraph-react

It says if the prop onlyFetch is supplied then no card will display, but instead the results from opengraph will be passed as props to the components children.

However, I do not know how to get hold of the data?

My code is

<OpengraphReactComponent
                site={comment.url}
                appId={"myapistring"}
                size={'small'}
                onlyFetch={'true'}
              />

The console shows data from their console.log but I can't work out a way to access the data returned?

I have tried console.log(this.props.children) within the component which is just empty



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source