summaryrefslogtreecommitdiff
path: root/src/view/photo.rs
blob: 1c2d08807786d98815ff953f309b0bfee46694de (plain)
1
2
3
4
5
6
7
8
9
10
use yew::prelude::*;
use vcard::properties;
use vcard::parameters;
use vcard::values::{self, text};

#[derive(Clone)]
pub struct Photo {
    pub base64_image: String,
}