1 2 3 4 5 6 7 8 9 10 11
use yew::{Properties}; #[derive(Properties, PartialEq)] pub struct Props { #[prop_or_default] pub body: String, pub name: String, pub title: String, pub website: String, pub company: String, }