mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 15:03:52 +00:00
tsconfig, core
This commit is contained in:
11
packages/zitadel-react/src/SignInWithGoogle.tsx
Normal file
11
packages/zitadel-react/src/SignInWithGoogle.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import * as React from "react";
|
||||
|
||||
export interface SignInWithGoogleProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
|
||||
export function SignInWithGoogle(props: SignInWithGoogleProps) {
|
||||
return <button>{props.children}</button>;
|
||||
}
|
||||
|
||||
SignInWithGoogle.displayName = "SignInWithGoogle";
|
||||
5
packages/zitadel-react/src/index.tsx
Normal file
5
packages/zitadel-react/src/index.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import * as React from "react";
|
||||
export {
|
||||
SignInWithGoogle,
|
||||
type SignInWithGoogleProps,
|
||||
} from "./SignInWithGoogle";
|
||||
Reference in New Issue
Block a user