@koroflow/dev-tools
v0.0.1-beta.11
Published
<div align="center"> <img src="https://koroflow.com/logo-icon.png" alt="Koroflow Logo" width="64" height="64" /> <h1>@koroflow/dev-tools</h1> <p>Transform privacy consent from a compliance checkbox into a fully observable system</p>
Readme
Documentation
For detailed documentation and examples, visit: https://koroflow.com/docs/guides/dev-tool
Installation
npm install @koroflow/dev-tools
# or
yarn add @koroflow/dev-tools
# or
pnpm add @koroflow/dev-toolsQuick Start
import { ConsentManagerProvider, CookieBanner, ConsentManagerDialog } from "@koroflow/elements";
import { DevTools } from "@koroflow/dev-tools";
export default function App() {
return (
<ConsentManagerProvider>
<CookieBanner />
<ConsentManagerDialog/>
<KoroflowDevTool />
{/* Your app content */}
</ConsentManagerProvider>
);
}