You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
381 B
React
15 lines
381 B
React
1 year ago
|
import React from 'react'
|
||
|
import { Head } from '@inertiajs/react'
|
||
|
import CustomerLayout from '@/Layouts/CustomerLayout'
|
||
|
|
||
|
export default function Index({ status }) {
|
||
|
return (
|
||
|
<CustomerLayout>
|
||
|
<Head title="Login" />
|
||
|
<div className="flex flex-col min-h-screen">
|
||
|
<div>Login</div>
|
||
|
</div>
|
||
|
</CustomerLayout>
|
||
|
)
|
||
|
}
|