adsmurai-dsr-react
v1.1.0
Published
Adsmurai Design System React - UI component library wrapping DSR components
Downloads
194
Maintainers
Readme
adsmurai-dsr-react
Adsmurai Design System React - UI component library wrapping DSR components with standardized React APIs.
Installation
npm install adsmurai-dsr-reactPeer Dependencies
| Package | Version | Required |
|---------|---------|----------|
| react | >=18.0.0 | Yes |
| react-dom | >=18.0.0 | Yes |
| tailwindcss | >=3.0.0 | Yes |
| react-hook-form | >=7.0.0 | Optional |
| zod | >=3.0.0 | Optional |
Usage
import { Button, Card, Input, useIsMobile } from 'adsmurai-dsr-react';
function App() {
const isMobile = useIsMobile();
return (
<Card>
<Input placeholder="Enter text..." />
<Button>Submit</Button>
</Card>
);
}License
MIT
