Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / pages / __Modularization / Modularization.js
Size: Mime:
import * as React from 'react';
import Helmet from 'react-helmet';
import { Main } from '@skava/packages/ui';
import { CartFeatureLite } from '@skava/packages/core/cart/ShoppingCartLite';
import { CategoryListContext } from '@skava/packages/core/categories';
import Subtotal from '@skava/packages/core/cart/Subtotal';
import ShoppingCartSidebar from '@skava/packages/core/cart/ShoppingCartLite/MiniCart';
import { CheckoutButtonGroup } from '@skava/packages/core/cart/ShoppingCartLite/MiniCart/CheckoutButtonGroup';
import { EstimateShipping } from '@skava/packages/features/EstimateShipping';
export default class One extends React.PureComponent {
    render() {
        return (React.createElement(React.Fragment, null,
            React.createElement(Helmet, null,
                React.createElement("title", null, "One")),
            React.createElement(Main, null,
                React.createElement(ShoppingCartSidebar, null,
                    React.createElement(Subtotal, null),
                    React.createElement(CheckoutButtonGroup, null),
                    React.createElement(CartFeatureLite, null),
                    React.createElement(EstimateShipping, null)),
                React.createElement("h1", null, "eh!"))));
    }
}
One.contextType = CategoryListContext;
//# sourceMappingURL=Modularization.js.map