Guest User

Untitled

a guest
Nov 16th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. ...
  2. service.queryListToInfoList(response.data || []);
  3. ...
  4.  
  5. export const queryListToInfoList = queryList => queryList.map(ql => queryToInfo(ql));
  6.  
  7. export const queryToInfo = query => { //some process; return {..}};
  8.  
  9. "dependencies": {
  10. ...
  11. "react": "16.5.1",
  12. "react-native": "^0.57.1"
  13. ...
  14. },
  15. "devDependencies": {
  16. ...
  17. "@babel/core": "^7.1.0",
  18. "@babel/plugin-external-helpers": "^7.0.0",
  19. "babel-core": "^7.0.0-0",
  20. "babel-preset-env": "^1.7.0",
  21. "metro-react-native-babel-preset": "^0.45.0"
  22. ...
  23. }
  24.  
  25. {
  26. "presets": ["module:metro-react-native-babel-preset"]
  27. }
Add Comment
Please, Sign In to add comment