每次传入时,如何更改此组件的值? ES6,reactJS

时间:2016-02-24 00:24:19

标签: reactjs react-jsx

我有一个组件调用'sectionlabel',我将其传递到我的不同个人资料页面。我只是希望能够为每个部分更改它的值。

import React from 'react';


class ProfileSectionLabel extends React.Component{

    render(){
        return <div className="profile-bar-header" value></div>;
    }

};

export default ProfileSectionLabel;

当我导入它时,我想我想做像

这样的事情
<ProfileSectionLabel value='account'/>

我猜因为它不是表格,所以最好使用文字或名字?

1 个答案:

答案 0 :(得分:1)

这是非常基本的东西,请阅读tutorial或查看现有组件。

return <div className="profile-bar-header">{this.props.value}</div>;