# recipes/ui/preview-entry.tsx

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

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

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

import { Preview } from './preview.tsx';

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