Getting Started
To start using Calisto in your React project, simply install the library via package manager:
sh
npm install @calisto/core @calisto/react
sh
yarn add @calisto/core @calisto/react
sh
bun add @calisto/core @calisto/react
Import the components you need, and begin building your user interface with confidence:
tsx
import { CalistoProvider } from '@calisto/react';
function App() {
return (
<CalistoProvider>
/// Your Application
</CalistoProvider>
);
}