Skip to content

Commit 2a5b180

Browse files
committed
Merge branch 'zouloux-master'
2 parents 5701466 + 529ba0d commit 2a5b180

File tree

11 files changed

+14234
-20
lines changed

11 files changed

+14234
-20
lines changed

frameworks/keyed/reflex/.babelrc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"presets": [
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"browsers": ["last 1 chrome versions"]
8+
}
9+
}
10+
],
11+
"@babel/preset-react"
12+
],
13+
"plugins": [
14+
[
15+
"@babel/plugin-transform-react-jsx",
16+
{
17+
"pragma" : "h"
18+
}
19+
]
20+
]
21+
}

frameworks/keyed/reflex/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.idea
2+
.DS_Store
3+
node_modules

frameworks/keyed/reflex/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8" />
5+
<title>Reflex</title>
6+
<link href="/css/currentStyle.css" rel="stylesheet"/>
7+
</head>
8+
<body>
9+
<div id='main'></div>
10+
<script src='dist/main.js' type="module"></script>
11+
</body>
12+
</html>

0 commit comments

Comments
 (0)