• Как не выводить информацию, если данные не приходят?

    @supeeeee_r_man Автор вопроса
    Начинающий веб-разработчик
    Я только начинаю изучать React. Не могли бы Вы, подробнее объяснить, пожалуйста.
    Вот кусок кода:

    class ColocationTableOne extends React.Component {
        public render(): React.ReactNode {
            return (
                <table className="colocation-tablestand">
                    <thead>
                        <tr>
                            <th>
                                <FormattedMessage id="colocation.building" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.location" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.device" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.equipment_type" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.serial_number" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.equipment_model" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.room_id" />
                            </th>
                            <th>
                                <FormattedMessage id="colocation.rack_id" />
                            </th>
                        </tr>
                    </thead>
                    <tbody>
                        {this.props.colocationTablestand.map(
                            (el, i): React.ReactNode => (
                                <tr key={i}>
                                    <td>{el.building}</td>
                                    <td>{el.location}</td>
    Ответ написан