12 lines
313 B
JavaScript
12 lines
313 B
JavaScript
import { Link } from '@inertiajs/react';
|
|
|
|
export default function GuestLayout({ children }) {
|
|
return (
|
|
<div className="flex min-h-svh w-full items-center justify-center p-6 md:p-10">
|
|
<div className="w-full max-w-sm">
|
|
{ children }
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|