Created
October 21, 2020 20:34
-
-
Save jalakoo/c3bc86fb827625940b5b538ba5be255f to your computer and use it in GitHub Desktop.
Sendbird Getting Started UIKit JS - Final
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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