Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions OnLand/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"presets": [
["env", {
"targets": {
"browsers": "last 2 versions"
},
"loose": true,
"modules": false
}],
"react",
"react-hmre",
"es2015"
],
"plugins": [
"babel-plugin-transform-class-properties",
"transform-es2015-destructuring",
"transform-object-rest-spread"
]
}
3 changes: 3 additions & 0 deletions OnLand/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.vscode/
node_modules/
dist/
16 changes: 16 additions & 0 deletions OnLand/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">

<head>
<title>React Webpack starter</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/dist/bundle.css">
</head>

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

</html>
Loading