โšก React Kit

A modern, lightweight React component library with live code editing documentation

2.35kB Total Bundle Size
~1kB Gzipped
100% TypeScript
14+ Tests

๐ŸŽฎ Live Playground

Interactive component documentation with live JSX code editing. Edit code in real-time and see instant results!

Open Storybook

๐Ÿ“ฆ Quick Start

Get started in seconds with our lightweight, tree-shakeable component library built with modern React patterns.

View Installation

๐Ÿ”ง TypeScript First

Built with TypeScript from the ground up. Full type safety, IntelliSense, and excellent developer experience.

View on GitHub

โœจ Why React Kit?

โšก

Lightning Fast

Optimized bundle size with tree-shaking support

๐ŸŽฏ

Developer First

Built by developers, for developers with great DX

๐Ÿงช

Well Tested

Comprehensive test suite with high coverage

๐Ÿ“š

Live Docs

Interactive documentation with live code editing

๐Ÿ“ฑ

Modern

Latest React patterns and modern tooling

๐ŸŽจ

Customizable

Flexible components that fit your design system

๐Ÿš€ Quick Start

Installation

npm install @dhua5922/react-kit
yarn add @dhua5922/react-kit

Basic Usage

import React, { useState } from 'react'
import { Center } from '@dhua5922/react-kit'

function App() {
  const [value, setValue] = useState(new Date())

  return (
    <Center>
      centered
    </Center>
  )
}
Try Live Examples View on GitHub