diff --git a/README.md b/README.md index 5c083773d..8bb8d8d60 100644 --- a/README.md +++ b/README.md @@ -20,23 +20,25 @@ ## Quick Start First add the library to your project: + ```shell -npm i @livekit/react-components +npm i @livekit/components-react ``` Then use any of our pre-fabricated or helper components: + ```tsx -import { LiveKitRoom, VideoConference } from '@livekit/components-react' +import { LiveKitRoom, VideoConference } from '@livekit/components-react'; -const TOKEN = 'generated-jwt' -const WS_URL = 'wss://my-livekit-server' +const TOKEN = 'generated-jwt'; +const WS_URL = 'wss://my-livekit-server'; export default function Example() { return ( - ) + ); } ```