Documentation
README
SKILL.md - Using @umami/react-zen
This guide covers how to use the zen component library in your React applications.
Installation
pnpm add @umami/react-zen
Import the stylesheet in your app entry point:
import '@umami/react-zen/styles.css';
Setup
Wrap your app with ZenProvider:
import { ZenProvider } from '@umami/react-zen';
function App() {
return (
<ZenProvider theme="light" palette="neutral">
{children}
</ZenProvider>
);
}
Provider Options
This is the opening of the README. Read the full README on GitHub.