@zitadel-fork/react
v0.0.0
Published
### Install
Downloads
5
Readme
How to use
Install
npm install @zitadel/react
or
yarn add @zitadel/react
Import styles file
To get the styles, import them in _app.tsx
or global styling file
import "@zitadel/react/styles.css";
Setup Dark mode
to set dark theme, wrap your components in a ui-dark
class.
Use components
import { SignInWithGoogle } from "@zitadel/react";
export default function IdentityProviders() {
return (
<div className="py-4">
<SignInWithGoogle />
</div>
);
}