SkirdaElectronLauncher/app/app.html
Daniel Scalzi 04d869794f Theoretical tests for integration with React.js.
This branch will likely never be merged into master, however it is intended to experiment with using React.js to power the backend. Due to complications, this will likely not be implemented in the initial release due to the complexity of the task.
2018-02-19 19:13:10 -05:00

31 lines
889 B
HTML

<html lang="en">
<head>
<meta charset="utf-8" />
<title>Westeroscraft Launcher</title>
<!--<script src="./assets/js/uicore.js"></script>
<script src="./assets/js/actionbinder.js"></script>
<link type="text/css" rel="stylesheet" href="./assets/css/launcher.css">
<style>
body {
background: url('assets/images/backgrounds/<%=0%>.jpg') no-repeat center center fixed;
background-size: cover;
}
#main {
background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}
</style>-->
<script>
require('babel-register')({
ignore: /^.*\.(css)$/i
})
console.log('here')
require('./start.jsx')
console.log('here')
require('./assets/js/uicore.js')
</script>
</head>
<body>
<div id="app">
</div>
</body>
</html>