summaryrefslogtreecommitdiff
path: root/webapp/src/components/hand.rs
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/hand.rs')
-rw-r--r--webapp/src/components/hand.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/src/components/hand.rs b/webapp/src/components/hand.rs
index 85b4dd2..bb6e372 100644
--- a/webapp/src/components/hand.rs
+++ b/webapp/src/components/hand.rs
@@ -20,7 +20,7 @@ pub fn hand(props: &HandProps) -> Html {
#[derive(Clone, Default, PartialEq, Properties)]
pub struct HandProps {
#[prop_or_default]
- cards: Vec<CardProps>,
+ pub cards: Vec<CardProps>,
}
impl<C: Into<CardProps>> FromIterator<C> for HandProps {