Skip to content

Commit

Permalink
It's working
Browse files Browse the repository at this point in the history
  • Loading branch information
joeldenning committed Aug 2, 2017
1 parent e5d8826 commit 2117c3a
Show file tree
Hide file tree
Showing 13 changed files with 4,646 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .babelrc
@@ -0,0 +1,13 @@
{
presets: [
["env", {
"targets": {
"browsers": ["last 2 versions"]
}
}],
["react"],
],
plugins: [
"syntax-dynamic-import",
],
}
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -57,3 +57,4 @@ typings/
# dotenv environment variables file
.env

dist
64 changes: 64 additions & 0 deletions index.html
@@ -0,0 +1,64 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title></title>
</head>
<body>
<!-- Load the application -->
<script src="/dist/root-application.js"></script>

<!-- Static navbar -->
<style>
.navbar {
position: fixed;
top: 0;
left: 0;
background-color: #111D4A;
color: white;
font-size: 18px;
font-weight: bold;
width: 100%;
height: 75px;
display: flex;
align-items: center;
}

.navbar ul {
display: flex;
align-items: center;
list-style-type: none;
height: 100%;
}

.navbar li {
padding-right: 24px;
height: 100%;
}

.navbar li:hover {
opacity: 0.8;
}

.navbar a {
text-decoration: none;
color: white;
}
</style>
<div class="navbar">
<ul>
<a href="#/app1">
<li>
App 1
</li>
</a>
<a href="#/app2">
<li>
App 2
</li>
</a>
</ul>
</div>
</body>
</html>

0 comments on commit 2117c3a

Please sign in to comment.