React UI components for Inspectr.
Inspectr UI is a collection of React UI components built for the Inspectr project. It leverages modern tools like Vite and TailwindCSS to provide a fast, customizable, and modular UI library for your React applications.
Install the package via npm:
npm install @inspectr/ui
Import the components and accompanying CSS into your React project:
import React from 'react';
import { InspectrApp } from '@inspectr/ui';
import '@inspectr/ui/style.css';
const App = () => (
<div>
<InspectrApp />
</div>
);
export default App;
Explore and test components in isolation with Storybook.
- Start Storybook locally:
npm run storybook
- Build a static Storybook site:
npm run build-storybook
Contributions are welcome! If you have ideas, improvements, or bug fixes, please open an issue or submit a pull request via the GitHub repository.
Found a bug or have a feature request? Please report it via the issue tracker.