react-json-view icon indicating copy to clipboard operation
react-json-view copied to clipboard

Please provide example on how to use with CDN

Open stumpykilo opened this issue 4 years ago • 1 comments

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!

stumpykilo avatar Oct 05 '21 02:10 stumpykilo

<!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>

himself65 avatar Sep 22 '22 06:09 himself65