@skele/classic
Version:
Skele is an architectural framework that assists with building data-driven apps with React or React Native.
25 lines (19 loc) • 473 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import ActivityIndicator from './pure/activityIndicator'
export default class Loading extends React.Component {
static propTypes = {
dispatch: PropTypes.func.isRequired,
kind: PropTypes.oneOfType([
PropTypes.string,
PropTypes.arrayOf(PropTypes.string),
]).isRequired,
}
constructor(props) {
super(props)
}
render() {
return <ActivityIndicator />
}
}