import React, { Component } from 'react';
import { styles } from '../styles';
import { View, Text } from 'react-native';
import { connect } from 'react-redux';
class Progressbar extends Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
}
}
export default Progressbar;
extends Component
??render метод наследуется от extends Component??
Почему мы не пишем this.render() ???