@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
33 lines • 1.53 kB
JavaScript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
import React from 'react';
import Background from './background';
import Breadcrumbs from './breadcrumbs';
import { AppLayoutInternalsProvider } from './context';
import Drawers from './drawers';
import Header from './header';
import Layout from './layout';
import Main from './main';
import MobileToolbar from './mobile-toolbar';
import Navigation from './navigation';
import Notifications from './notifications';
import SplitPanel from './split-panel';
import Tools from './tools';
const AppLayoutWithRef = React.forwardRef(function AppLayout(props, ref) {
return (React.createElement(AppLayoutInternalsProvider, { ...props, ref: ref },
React.createElement(SplitPanel, null,
React.createElement(Layout, null,
React.createElement(Background, null),
React.createElement(Navigation, null),
React.createElement(MobileToolbar, null),
React.createElement(Notifications, null),
React.createElement(Breadcrumbs, null),
React.createElement(Header, null),
React.createElement(Main, null),
React.createElement(SplitPanel.Bottom, null),
React.createElement(Tools, null,
React.createElement(SplitPanel.Side, null)),
React.createElement(Drawers, null)))));
});
export default AppLayoutWithRef;
//# sourceMappingURL=index.js.map