usesuper::*;/// Props for the [`docs_password_gate`] component.
#[derive(Clone, Default)]pub(crate)structDocsPasswordGateProps{/// Page route (used as the unlock key in localStorage).
pubroute:&'staticstr,
/// Hex-encoded SHA-256 of the correct password.
pubexpected_hash:&'staticstr,
/// Page title (shown above the form so the user knows which article
/// they're being asked to unlock).
pubtitle:&'staticstr,
}