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 './style.styl';
// import Anchor from '../../Anchor/index';
// import classnames from 'classnames';
var GoodsIntro = /** @class */ (function (_super) {
    __extends(GoodsIntro, _super);
    function GoodsIntro() {
        var _this = _super !== null && _super.apply(this, arguments) || this;
        _this.state = {
            fixed: false
        };
        return _this;
    }
    GoodsIntro.prototype.fixedHandle = function (status) {
        var fixed = this.state;
        if (fixed != status) {
            this.setState({ fixed: status });
        }
    };
    GoodsIntro.prototype.render = function () {
        // const activeLine = classnames({
        //     'active-line': this.state.fixed,
        //     'split-line': true
        // });
        return (<div className="goods-intro" id="intro">
                
            </div>);
    };
    return GoodsIntro;
}(Component));
export default GoodsIntro;
