wrong.rsx 166 B

12345678910
  1. #[component]
  2. fn SidebarSection() -> Element {
  3. rsx! {
  4. div {
  5. onclick: move |_| {
  6. .doesnt_work()
  7. }
  8. }
  9. }
  10. }