redoc/demo/index.html

20 lines
375 B
HTML
Raw Normal View History

2015-10-03 11:54:09 +03:00
<!-- index.html -->
<html>
<head>
2015-10-03 12:57:37 +03:00
<title>ReDoc prototype</title>
2015-10-03 11:54:09 +03:00
</head>
<body>
<!-- The wrapper component-->
<redoc>
2015-10-03 11:54:09 +03:00
Loading...
</redoc>
2015-10-03 11:54:09 +03:00
<!-- ReDoc built file with all dependencies included -->
<script src="dist/redoc.full.js"> </script>
<script>
//init redoc
Redoc.init('petstore.json');
2015-10-03 11:54:09 +03:00
</script>
</body>
</html>