# @usercentric/uc-design-system-app-shell

> Application shell powered by UCDS.

Latest version **4.0.1** (published 2020-07-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install @usercentric/uc-design-system-app-shell
pnpm add @usercentric/uc-design-system-app-shell
yarn add @usercentric/uc-design-system-app-shell
bun add @usercentric/uc-design-system-app-shell
```

## Health

**Score 35/100 (D)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 4.0.1 |
| Published | 2020-07-31 |
| First published | 2020-07-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 58.5 KB |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | orlando, usercentric-au, jamsi |

## Links

- npm: https://www.npmjs.com/package/@usercentric/uc-design-system-app-shell
- Repository: https://github.com/lorica/uc-design-system/tree/master/packages/app-shell
- npm.io page: https://npm.io/package/@usercentric/uc-design-system-app-shell

## Dependencies (2)

- [uuid](https://npm.io/package/uuid.md) ^7.0.3
- [shallowequal](https://npm.io/package/shallowequal.md) ^1.1.0

## Recent versions

- 4.0.1 (latest) — 2020-07-31

## README

# UCDS AppShell

A root component that should wrap your entire application.

```bash static
yarn add @usercentric/uc-design-system-app-shell
```

## Usage

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 '@usercentric/uc-design-system-app-shell'
import App from '../local/components/App'

ReactDOM.render(
  <AppShell name="UCDS">
    <App />
  </AppShell>,
  document.getElementById('root')
)
```

---
_Source: https://npm.io/package/@usercentric/uc-design-system-app-shell · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
