meme-magic
Version:
An A-Frame, React, Redux front-end with Sessions, Websockets, SQL, and Authentication built into the backend.
23 lines • 991 B
HTML
<html lang="en">
<head>
<title> Meme Magic </title>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="/materialize-css/dist/css/materialize.min.css" media="screen,projection"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<script src="/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="/materialize-css/dist/js/materialize.min.js"></script>
<!--
!!! WARNING !!!
The 'defer' below has been known to cause race conditions with React/AFrame,
there are a multitude of work arounds none ideal.
If you rip it out - React won't work,
if you leave it in, AFrame needs to be treated with care.
-->
<script src="/bundle.js" defer></script>
</head>
<body>
<!-- Inline style is needed for VR Goggles to show up in A-Frame -->
<div id="react-app" style="height: 100%; width: 100%"/>
</body>
</html>