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