import { dashboard_path, login_path, register_path } from '@/routes' import { PageProps } from '@/types' import { Head, Link } from '@inertiajs/react' export default function Welcome({ auth, railsVersion, rubyVersion, }: PageProps<{ railsVersion: string; rubyVersion: string }>) { return ( <>
{auth.user ? ( Dashboard ) : ( <> Log in Register )}
) }