Skip to content

Instantly share code, notes, and snippets.

@jalakoo
Created October 21, 2020 20:33
Show Gist options
  • Save jalakoo/15b4c479f6eb14eba3b70b61e45dd5e7 to your computer and use it in GitHub Desktop.
Save jalakoo/15b4c479f6eb14eba3b70b61e45dd5e7 to your computer and use it in GitHub Desktop.
Sendbird Getting Started UIKit JS - Intermediate 2
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">
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
</div>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment