"use client"; import { PropsWithChildren } from "react"; type Props = { onClick: () => Promise; }; export const OAuthButton: React.FC> = ({ onClick, children }) => { return ( ); };