mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-10 19:06:34 +03:00
24 lines
511 B
HTML
24 lines
511 B
HTML
<!-- index.html -->
|
|
<html>
|
|
<head>
|
|
<title>ReDoc prototype</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
<link rel="stylesheet" href="dist/redoc.full.css">
|
|
</head>
|
|
<body>
|
|
<side-menu>
|
|
</side-menu>
|
|
<!-- 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('swagger.json');
|
|
</script>
|
|
</body>
|
|
</html>
|