mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:42:59 +00:00
chore: format code
This commit is contained in:
@@ -4,7 +4,5 @@ export type ZitadelReactProps = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export function ZitadelReactProvider({ dark, children }: ZitadelReactProps) {
|
export function ZitadelReactProvider({ dark, children }: ZitadelReactProps) {
|
||||||
return (
|
return <div className={`${dark ? "ztdl-dark" : "ztdl-light"} `}>{children}</div>;
|
||||||
<div className={`${dark ? "ztdl-dark" : "ztdl-light"} `}>{children}</div>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,12 +8,6 @@ export { SignInWithAzureAD } from "./components/SignInWithAzureAD";
|
|||||||
|
|
||||||
export { SignInWithGithub } from "./components/SignInWithGithub";
|
export { SignInWithGithub } from "./components/SignInWithGithub";
|
||||||
|
|
||||||
export {
|
export { ZitadelReactProvider, type ZitadelReactProps } from "./components/ZitadelReactProvider";
|
||||||
ZitadelReactProvider,
|
|
||||||
type ZitadelReactProps,
|
|
||||||
} from "./components/ZitadelReactProvider";
|
|
||||||
|
|
||||||
export {
|
export { SignInWithIDP, type SignInWithIDPProps } from "./components/SignInWithIDP";
|
||||||
SignInWithIDP,
|
|
||||||
type SignInWithIDPProps,
|
|
||||||
} from "./components/SignInWithIDP";
|
|
||||||
|
|||||||
Reference in New Issue
Block a user