tsconfig, core

This commit is contained in:
Max Peintner
2023-04-03 15:38:50 +02:00
parent f9299ad990
commit 987784c1a0
32 changed files with 290 additions and 747 deletions

View 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";

View File

@@ -0,0 +1,5 @@
import * as React from "react";
export {
SignInWithGoogle,
type SignInWithGoogleProps,
} from "./SignInWithGoogle";