var Row = Namespace.declare("com.twitter.Bootstrap",
    class Row extends UcpComponent {
        static get implements() { return []; }
        static get overwriteServerDescriptor() { return true; }
        static start() {
            UcpComponentSupport.importLink(this.IOR.loader.basePath + "/src/css/row.css", "stylesheet", "text/css");

        }
        static get dependencies() {
                return [
                    "/EAMD.ucp/Components/com/twitter/Bootstrap/4.0.0-latest/Bootstrap.component.xml",
                ];
            }
            // static get weBeanUnitPaths() {
            //     return null;
            // }

        constructor() {
            super();
        }

        init() {
            super.init();

            this.model = {
                classes: 'rowDiv'
            };

            return this;
        }

    });