I get pre-formatted text with tags from the database
let text = r##"h1 {"Title"} p{"Paragraph"}"##.to_string();
or like
let text = "<h1>Title</h1><p>Paragraph</p>".to_string();
Is it possible to create a component with these tags from String like
#[component]
pub fn Text() () -> Element {
rsx! {
h1 {"Title"}
p{"Paragraph"}
}}