Application shell powered by Lunar.
A root component that should wrap your entire application.
``bash static`
yarn add @airbnb/lunar-app-shell
The AppShell is designed to wrap an entire React application, and as such, should primarily be the
root component in the application tree (excluding HMR and other wrappers/providers). For example:
`jsx static
import React from 'react';
import ReactDOM from 'react-dom';
import AppShell from '@airbnb/lunar-app-shell';
import App from '../local/components/App';
ReactDOM.render(
document.getElementById('root'),
);
``