react-json-view
react-json-view copied to clipboard
Please provide example on how to use with CDN
I cannot get this library to work with any CDN link. Could you please provide a simple example of how you would use this library with a simple react page with no npm installation? Thanks!
<!DOCTYPE html>
<html lang="en">
<body>
<div id="json-viewer"></div>
<script src="https://cdn.jsdelivr.net/npm/@textea/[email protected]"></script>
<script>
new JsonViewer({
value: 123
}).render()
</script>
</body>
</html>