Compare commits

...

1 Commits

Author SHA1 Message Date
b3ea6612bc [Tutorials] Add hello world example 2016-12-23 15:43:45 -08:00

View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<script src="openmct.js"></script>
</head>
<body>
<script type="text/javascript">
openmct.install(openmct.plugins.localStorage);
openmct.install(openmct.plugins.myItems);
openmct.start();
</script>
</body>
</html>