Get Started with LuminX
LuminX is a modern, powerful UI component library for React with a focus on accessibility and developer experience. We have made the installation process as simple as possible and everything is documented.
Installation
Core Package
Install our core package:
npm install @luminx/core
Optional Packages
For date-related components (optional):
npm install @luminx/dates
Usage
Import components directly from the package:
import { Button, Text, Title } from "@luminx/core";
function MyComponent() {
return (
<div>
<Title>Hello LuminX</Title>
<Text>Start building beautiful interfaces</Text>
<Button>Click me</Button>
</div>
);
}