messy_indent.rsx 412 B

12345678910111213
  1. fn SaveClipboard(cx: Scope) -> Element {
  2. rsx! {
  3. div { class: "relative w-1/2 {align} max-w-md leading-8",
  4. h2 { class: "mb-6 text-3xl leading-tight md:text-4xl md:leading-tight lg:text-3xl lg:leading-tight font-heading font-mono font-bold",
  5. "{title}"
  6. }
  7. }
  8. };
  9. cx.render(rsx! {
  10. div { "hello world", "hello world", "hello world" }
  11. })
  12. }