render() {
const items = [
'Клиент',
'Год',
'Период',
'Версия',
'Статус',
'Режим',
'Форма'
]
function make_row(value) {
return (
<div className="descr-doc__item">{value}</div>
)
}
const rows = items.map(make_row)
return (
<div className="descr-doc">
{rows}
</div>
)
}
const items = [
`Клиент: ${client}`,
`Год: ${year}`,
`Период: ${period} квартал`,
`Версия: ${version}`,
`Статус: ${status}`,
`Режим: ${mode}`,
`Форма: ${type}`
]
class App extends Component {
constructor(props) {
super(props);
this.state = {
users: [],
};
}
componentDidMount() {
fetch('https://myhost.com/users/get/')
.then(response => response.json())
.then(data => this.setState({ users: data.users }));
}
...
}