import React, {Component} from 'react'; import {Col, Card, CardImg, CardBody, CardTitle} from 'reactstrap'; import WiaasBox from '../../mainComponents/box/WiaasBox.jsx'; import profileSvg from '../../svg/profile.svg'; import './style/ProfileShowContainer.css'; class ProfileShowContainer extends Component { render() { const {profileInfo, isLoading} = this.props; return (
{ isLoading && } { (profileInfo && !isLoading) && {profileInfo.name}
{profileInfo.companyName}
{profileInfo.vatCode}
{profileInfo.mail}
{profileInfo.phone}
}
); } } export default ProfileShowContainer;