S
S
Stepan2015-12-06 21:57:55
React
Stepan, 2015-12-06 21:57:55

How to not show a piece of a component in React?

<Alert bsStyle="warning" onDismiss={this.hideAlertByClick}>
                    <strong>Внимание</strong> - эксперементальный проект, в стадии разработки. Заявленные функции будут подключаться по мере его развития.
</Alert>;

The same optional piece. If the condition is not met, then do not draw it at all

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander, 2015-12-06
@xoma2

{!this.state.showAlert || <Alert bsStyle="warning" onDismiss={this.hideAlertByClick}>
                    <strong>Внимание</strong> - эксперементальный проект, в стадии разработки. Заявленные функции будут подключаться по мере его развития.
</Alert>}

A
Alexander Prozorov, 2015-12-06
@Staltec

An exhaustive answer to your question is given in the official React documentation .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question