monorepo/ui/README.md
2024-07-06 20:34:19 -05:00

23 lines
488 B
Markdown

# User Interfaces
By default, `pnpm` is setup to track any subdirectory of the `ui` as a `pnpm` workspace. To help illustrate this, let
us consider the example directory structure below. It illustrates how you may have several, independently managed
user interfaces, including command line interfaces.
```shell
|- ui
|- mobile
| |- ## react native app
|
|- storefront
| |- ## ...
|
|- backstage
| |- ## ...
|
|- cli
| |- # ...
|
|- ## ...
```