react-native 报错:node is not attached to a parent: 116
错误原因:引入组件时多了大括号
解决办法:
将
import {JobCell} from '../components/jobList/JobCell'
改为
import JobCell from '../components/jobList/JobCell'
react-native 报错:node is not attached to a parent: 116
错误原因:引入组件时多了大括号
解决办法:
将
import {JobCell} from '../components/jobList/JobCell'
改为
import JobCell from '../components/jobList/JobCell'