From 41c2c49d748fce5a9911c96ef2043e2fb262a151 Mon Sep 17 00:00:00 2001 From: David Zhao Date: Sat, 28 Oct 2023 16:54:44 -0700 Subject: [PATCH] Fix package name in install instructions (#669) --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) 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 ( - ) + ); } ```