HomeBytesheetsUI TemplatesUI ToolsRoad MapsStack DiscussionByte Camp
BytesUIv0.5.3
⌘K

Getting Started

Add @bytesui/react to your React application in seconds.

Installation

npm install @bytesui/react

Quick Usage

Import any component and start using it right away — no required setup. Components work out of the box with sensible default styling; wrapping your app in `ThemeProvider` is entirely optional and only needed if you want to customize colors (see the Theming page).

import { OtpInput } from '@bytesui/react';

export default function App() {
  return (
    <OtpInput
      length={6}
      autoFocus
      onComplete={(code) => console.log('OTP Submitted:', code)}
    />
  );
}