busybar-ui / src / app / login.tsx
login.tsx
Raw
import React from 'react'

import { AuthProviders } from '@/components/auth/auth-providers'
import { Text, View } from '@/ui'

export default function Login() {
  return (
    <View className="flex-1 justify-center p-4">
      <Text testID="login-title" className="pb-6 text-center text-2xl">
        Sign In
      </Text>
      <AuthProviders />
    </View>
  )
}