mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
11 lines
269 B
TypeScript
11 lines
269 B
TypeScript
import ContentLayout from '~/components/layouts/content_layout';
|
|
import PATHS from '../../app/constants/paths';
|
|
|
|
export default function LoginPage() {
|
|
return (
|
|
<ContentLayout>
|
|
<a href={PATHS.AUTH.GOOGLE}>Continue with Google</a>
|
|
</ContentLayout>
|
|
);
|
|
}
|