cluedin-widget
Version:
This project contains all the pages needed for browsing entities and searching them. The aim is to replace the CluedIn.Webapp project with this one when all the pages ( including the Admin page ) will be ported to REACT.
25 lines (23 loc) • 630 B
HTML
<html lang="en" style="height:100%;margin:0;padding:0;">
<head>
<meta charset="UTF-8">
<title>Testing Frame</title>
<script src="/dev_config.js"></script>
<script src='//use.fontawesome.com/916136f8de.js'></script>
<script src="/dev_layout.js"></script>
<style>
* {
box-sizing: border-box;
}
</style>
</head>
<body class="fullApp" style="height:100%;overflow-x: hidden;margin:0;padding:0;">
<div id="app">
</div>
<script src="/cluedin_chrome.js"></script>
<script>
__cluedIn.injectChromePlugin(document.getElementById('app'));
</script>
</body>
</html>