Untitled
Anonymous
javascript
01/02/2024 11:41 AM
396 B
18
Indexable
const client = new Ably.Realtime.Promise({
key: <YOUR_TOKEN_AUTH_URL>,
clientId: </*Whatever client id you want for this*/>,
});
const root = createRoot(container);
root.render(
<React.StrictMode>
<AblyProvider client={client}>
<App />
</AblyProvider>
</React.StrictMode>
);Editor is loading...
Leave a Comment