import { Head } from '@inertiajs/react';
import { Mapa } from '@/pages/ficha-inventario/components/Mapa';

export default function MapaPrototipo() {
    return (
        <>
            <Head title="Mapa prototipo" />

            <div className="flex h-[calc(100vh-4rem)] flex-col p-4">
                <Mapa />
            </div>
        </>
    );
}
