ICS React Native App
1<!doctype html>
2<html>
3 <head>
4 <meta charset="utf-8"/>
5 <title>Banking Demo API</title>
6 <link rel="stylesheet" href="https://unpkg.com/swagger-ui-dist/swagger-ui.css">
7 </head>
8 <body>
9 <div id="swagger"></div>
10 <script src="https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.js"></script>
11 <script>
12 SwaggerUIBundle({
13 url: new URL(window.location.origin + '/openapi.yaml', window.location.host).toString(),
14 dom_id: "#swagger",
15 deepLinking: true,
16 presets: [SwaggerUIBundle.presets.apis],
17 });
18 </script>
19 </body>
20</html>