interface ShareVerifyFormProps { error?: { title: string; message: string }; } export default function ShareVerifyForm( { error }: ShareVerifyFormProps, ) { return (

File Share Authentication

You are required to authenticate with a password

{error ? (

{error.title}

{error.message}

) : null}
); }