@nebulaai/react-hooks
v1.1.0
Published
Collection of React hooks for NebulaAI applications and decentralized development
Maintainers
Readme
@nebulaai/react-hooks
Collection of React hooks for NebulaAI applications and decentralized development workflows.
Features
- Custom React hooks for NebulaAI integration
- TypeScript support
- Optimized for performance
- Easy to use and extend
Installation
npm install @nebulaai/react-hooksUsage
import { useNebulaAI } from '@nebulaai/react-hooks';
function MyComponent() {
const { data, loading, error } = useNebulaAI();
if (loading) return <div>Loading...</div>;
if (error) return <div>Error: {error.message}</div>;
return <div>Data: {JSON.stringify(data)}</div>;
}Available Hooks
useNebulaAI- Main NebulaAI integration hookuseProject- Project management hookuseCollaboration- Real-time collaboration hook
Contributing
We welcome contributions! Please see our Contributing Guide for details.
License
MIT License - see LICENSE file for details.
Author
Jorge Gonzalez & Temporal AI Technologies Inc
