Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
benson336 committed May 27, 2019
0 parents commit daee569
Show file tree
Hide file tree
Showing 38 changed files with 13,529 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"presets": [
"env",
"react"
],
"plugins": [
"transform-class-properties",
"transform-object-rest-spread"
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
331 changes: 331 additions & 0 deletions Public/bundle.js

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions Public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Expensify</title>
</head>

<body>
<div id="app"></div>
<script src="/bundle.js"></script>

</body>

<html>

3 changes: 3 additions & 0 deletions Public/scripts/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
'use strict';

console.log('app is working');
Loading

0 comments on commit daee569

Please sign in to comment.