# LiveKit React Component Library This package provides pre styled React components that makes it easy to use LiveKit in a React app. ## Install ```bash npm install --save @livekit/react-components livekit-client ``` ## Demo https://example.livekit.io. Source available in [example](../../example/) ## Usage ### Video room with built-in UI Without customization, the component would use a default skin as seen in the demo above. ```tsx import { LiveKitRoom } from '@livekit/react-components'; // CSS should be explicitly imported if using the default UI import '@livekit/react-components/dist/index.css'; // used by the default ParticipantView to maintain video aspect ratio. // this CSS must be imported globally // if you are using a custom Participant renderer, this import isn't necessary. import 'react-aspect-ratio/aspect-ratio.css'; export const RoomPage = () => { const url = 'wss://your_host'; const token = 'your_token'; return (