MCPcopy Create free account
hub / github.com/DioxusLabs/dioxus-components / ComponentGallery

Function ComponentGallery

preview/src/main.rs:1888–1896  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1886
1887#[component]
1888fn ComponentGallery() -> Element {
1889 rsx! {
1890 div { class: "dx-component-gallery",
1891 for component in components::DEMOS.iter().cloned() {
1892 ComponentGalleryPreview { component }
1893 }
1894 }
1895 }
1896}
1897
1898#[component]
1899fn ComponentGalleryPreview(component: ComponentDemoData) -> Element {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected