json-ld with ReactJS
npm install react-jsonld``bash`
npm install react-jsonld
`javascript
import JsonLd from 'react-jsonld';
...
const data = {
"@context": "http://json-ld.org/contexts/person.jsonld",
"@id": "http://dbpedia.org/resource/John_Lennon",
"name": "John Lennon",
"born": "1940-10-09",
"spouse": "http://dbpedia.org/resource/Cynthia_Lennon"
};
...
``
MIT
