```tsx {2,10}
import React from 'react';
import { Player, Ui, Scrim } from '@vime/react';

function Example() {
  return (
    <Player>
      {/* ... */}
      <Ui>
        {/* ... */}
        <Scrim />
      </Ui>
    </Player>
  );
}
```
