超级道具继承不起作用

时间:2017-02-27 14:07:28

标签: reactjs

App中的道具似乎没有继承基本组件的道具。因为每当我在控制台中记录道具的值。就像这样。 有什么想法我的问题是什么?谢谢 enter image description here

    class App extends React.Component{
    constructor(props){
        super(props)
        this.state={
            count: 1
        }
        console.log(this.props)
    }
    render(){
        return (
            <Container fluid={true}>
                <Row>
                    <Col md="6" md-offset="3">
                        <LogRegContainer name={"hello"}/>
                    </Col>
                </Row>
            </Container>
        )
    }
}

export default App;

0 个答案:

没有答案