{"SEER"}
}
}
+
+#[derive(Debug, Clone, PartialEq, Properties)]
+struct FalselyAppearsAsProps {
+ roles: Box<[RoleTitle]>,
+ alignment_text: &'static str,
+}
+
+#[function_component]
+fn FalselyAppearsAs(
+ FalselyAppearsAsProps {
+ roles,
+ alignment_text,
+ }: &FalselyAppearsAsProps,
+) -> Html {
+ let false_positives = roles
+ .iter()
+ .copied()
+ .map(|role| {
+ html! {
+
+ }
+ })
+ .collect::();
+ html! {
+
+
+ {"ROLES THAT FALSELY APPEAR AS "}
+ {alignment_text}
+
+
+ {false_positives}
+
+
+ }
+}