A collection of customizable and reusable UI components built with React, designed to accelerate your development process.
- Reusable components: Use a wide variety of pre-built UI components that can be easily customized to suit your project's needs.
- TypeScript support: Developed with TypeScript, ensuring type safety and a better developer experience.
- Styled with SCSS: Components are styled using SCSS, making it easy to override styles or create custom themes.
- Storybook integration: Preview all components with live documentation using Storybook. View Storybook.
- Fast setup: Easily install the package via npm and start building.
You can install the library through npm:
npm install @rubtsov/ui-components-reactImport and use the components in your React application:
import { Avatar } from '@rubtsov/ui-components-react';
import '@rubtsov/ui-components-react/dist/style.css'
const App = () => (
<div>
<Avatar src="https://example.com/image.jpg" alt="User Avatar" />
</div>
);
export default App;