Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

props in classes

// Component.js

import React from 'react';

export default class MyClassComponent extends React.Component {
    render() {
        return (<div>
            {/* В классовом компоненте props доступны через this */}
            Hello Class, {this.props.name}!
        </div>);
    }
}
Source by gitlab.com #
 
PREVIOUS NEXT
Tagged: #props #classes
ADD COMMENT
Topic
Name
7+2 =