Skip to content

Instantly share code, notes, and snippets.

@jalakoo
Created October 21, 2020 20:34
Show Gist options
  • Save jalakoo/c3bc86fb827625940b5b538ba5be255f to your computer and use it in GitHub Desktop.
Save jalakoo/c3bc86fb827625940b5b538ba5be255f to your computer and use it in GitHub Desktop.
Sendbird Getting Started UIKit JS - Final
import React from "react";
import { App as SendbirdApp } from "sendbird-uikit";
import "sendbird-uikit/dist/index.css";
import "./styles.css";
const APP_ID = "45612F31-4304-4FC4-9FD9-C35B5FCDCE30"
const USER_ID = "Demo User"
export default function App() {
return (
<div className="App">
<SendbirdApp appId={APP_ID} userId={USER_ID} />
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment