August 2017
Beginner
374 pages
10h 41m
English
The next step is implementing the React component, which will display the loading indicator:
import React from 'react'const Loading = ({ isLoading }) => isLoading && <span>Loading...</span>export default Loading
import { connect } from 'react-redux'import Loading from '../components/Loading.jsx'
Read now
Unlock full access