symphony-integration-commons
Version:
Common components for 3rd party developers build the user facing application for Symphony Integrations.
22 lines (20 loc) • 906 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World App - View</title>
<!-- Include Symphony's stylesheet -->
<link rel="stylesheet" type="text/css" href="https://symphony.com/resources/api/v1.1/symphony-style.css">
</head>
<!--
See app.js for how the user's theme (light or dark) and font size (large, normal, small, xsmall) are detected and applied.
-->
<body>
<div id="app"></div>
<!-- Include Symphony's Client Extension API javascript -->
<script type="text/javascript" src="https://www.symphony.com/resources/api/v1.0/symphony-api.js" charset="utf-8"></script>
<!-- script type="text/javascript" src="symphony-api.js"></script -->
<!-- Include the app view javascript. This file is generated when running the npm webpack commands. -->
<script type="text/javascript" src="app.bundle.js" charset="utf-8"></script>
</body>
</html>