import { usePage } from '@inertiajs/react' import React from 'react' export default function ApplicationLogo({ className }) { const { props: { app_name }, } = usePage() return

{app_name}

}