var __extends = (this && this.__extends) || (function () {
    var extendStatics = Object.setPrototypeOf ||
        ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
        function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
    return function (d, b) {
        extendStatics(d, b);
        function __() { this.constructor = d; }
        d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
    };
})();
import React, { Component } from 'react';
// import { Sym } from '../../Icon/index';
import './style.styl';
var Process = /** @class */ (function (_super) {
    __extends(Process, _super);
    function Process() {
        return _super !== null && _super.apply(this, arguments) || this;
    }
    Process.prototype.render = function () {
        var _a = this.props.info, info = _a === void 0 ? {} : _a;
        return (<div className="process" id="process">
                <div className="process-head">服务流程</div>
                <div className="process-main">
                    <div className="process-main-qa">
                        
                        {info.process.list.map(function (item, index) {
            return (<div className="as" key={index}>
                                    
                                    {item}
                                </div>);
        })}
                    </div>
                </div>
                
            </div>);
    };
    return Process;
}(Component));
export default Process;
