> For the complete documentation index, see [llms.txt](https://docs.hello-lisa.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hello-lisa.com/developers/guides/integration-guide/app-integration/react-native/storage.md).

# Storage

### **Enable localStorage & sessionStorage**

```jsx
import { WebView } from 'react-native-webview';

<WebView
  source={{ uri: 'https://{clientId}.loveslisa.tech/s/{showId}' }}
  javaScriptEnabled={true}
  domStorageEnabled={true} 
/>
```

### **Enabling Cache**

To increase LiSA Player performance, caching must be enabled.

```jsx
<WebView
  cacheEnabled={true}
  cacheMode={'LOAD_DEFAULT'}
/>
```
