mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-11 22:51:05 +00:00
15 lines
311 B
TypeScript
15 lines
311 B
TypeScript
"use client";
|
|
|
|
import { Button } from "@repo/ui/shadcn/button";
|
|
import React from "react";
|
|
import { signIn } from "../../server/auth";
|
|
|
|
function SignIn() {
|
|
return (
|
|
<Button className="mt-4" onClick={async () => await signIn("google")}>
|
|
Login with Google
|
|
</Button>
|
|
);
|
|
}
|
|
|
|
export default SignIn;
|