Repository URL to install this package:
|
Version:
0.0.9 ▾
|
import * as React from 'react';
import { OrderHistory } from '@skava/packages/pages/Orders/OrderHistorySection';
import Shipping from '../sections/AddressSection';
import Privacy from '../sections/PrivacySection';
import Landing from '../sections/LandingSection';
import Payment from '../sections/PaymentSection';
import SideBar from './SideBar';
export class MyAccountAppShellFlat extends React.PureComponent {
render() {
return (React.createElement(React.Fragment, null,
React.createElement(Shipping, null),
React.createElement(Payment, null),
React.createElement(OrderHistory, null),
React.createElement(Landing, null),
React.createElement(Privacy, null),
React.createElement(SideBar, null)));
}
}
//# sourceMappingURL=MyAccountAppShellFlat.js.map