mirror of
https://github.com/Redocly/redoc.git
synced 2025-01-31 01:54:08 +03:00
20 lines
375 B
HTML
20 lines
375 B
HTML
<!-- index.html -->
|
|
<html>
|
|
<head>
|
|
<title>ReDoc prototype</title>
|
|
</head>
|
|
<body>
|
|
<!-- The wrapper component-->
|
|
<redoc>
|
|
Loading...
|
|
</redoc>
|
|
|
|
<!-- ReDoc built file with all dependencies included -->
|
|
<script src="dist/redoc.full.js"> </script>
|
|
<script>
|
|
//init redoc
|
|
Redoc.init('petstore.json');
|
|
</script>
|
|
</body>
|
|
</html>
|