We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94f827b commit af35e05Copy full SHA for af35e05
src/App.js
@@ -5,6 +5,14 @@ import './App.css';
5
import TodoInput from './TodoInput';
6
import TodoItem from './TodoItem';
7
import * as localStore from './localStore';
8
+import AV from 'leancloud-storage';
9
+
10
+let APP_ID = 'WiamNEuR1RvvIikVyFhpAbUB-gzGzoHsz';
11
+let APP_KEY = 'ewLqQgvGfn4Hcjs2xxfGxE4L';
12
+AV.init({
13
+ appId: APP_ID,
14
+ appKey: APP_KEY
15
+});
16
17
class App extends Component {
18
constructor(props) {
0 commit comments