openmct/index.html
Victor Woeltjen 4f08d43037 [Structure] Add index.html
Add index.html, which will serve as the main
point-of-entry for the full application.
WTD-519.
2014-10-31 09:48:37 -07:00

24 lines
548 B
HTML

<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script type="text/javascript"
src="platform/framework/lib/require.js">
</script>
</head>
<body>
<!-- This is a placeholder for validating initial project structure -->
<script type="text/javascript">
require(
["platform/framework/src/Temporary"],
function (Temporary) {
"use strict";
document.writeln(new Temporary().someMethod());
}
);
</script>
</body>
</html>