Skip to content

Commit 8741d2c

Browse files
committed
Merge branch 'Mikeysax-master'
2 parents 650e192 + cc7b23c commit 8741d2c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

frameworks/non-keyed/literaljs/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Store } from './store';
66

77
const App = component({
88
methods() {
9-
const { store } = this.getState();
9+
const { store } = this.state;
1010
return {
1111
run() {
1212
store.run();
@@ -43,7 +43,7 @@ const App = component({
4343
};
4444
},
4545
render() {
46-
const { store } = this.getState();
46+
const { store } = this.state;
4747
return (
4848
<div class="container">
4949
<div class="jumbotron">
@@ -147,7 +147,7 @@ const App = component({
147147
/>
148148
</a>
149149
</td>
150-
<td class="col-md-6"></td>
150+
<td class="col-md-6" />
151151
</tr>
152152
))}
153153
</tbody>

frameworks/non-keyed/literaljs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"license": "MIT",
2222
"dependencies": {
2323
"@babel/runtime": "7.4.5",
24-
"literaljs": "6.0.5"
24+
"literaljs": "6.0.6"
2525
},
2626
"devDependencies": {
2727
"@babel/core": "7.4.5",

0 commit comments

Comments
 (0)