# recipes/ui/entry.tsx

One file of [`recipes/ui`](/docs/recipes/ui), at commit `9a5bb24`.

```tsx
// What the browser runs: mount the gallery into the page.

import { mount } from '@aweftjs/ui';

import { App } from './page.tsx';

mount(document.body as never, <App />);
```
