(name: &'static str)
| 919 | |
| 920 | #[component] |
| 921 | fn ComponentInstallCommand(name: &'static str) -> Element { |
| 922 | let command = format!("dx components add {name}"); |
| 923 | |
| 924 | rsx! { |
| 925 | div { class: "dx-component-inline-command", |
| 926 | code { "{command}" } |
| 927 | CopyCommandButton { command: command.clone() } |
| 928 | } |
| 929 | } |
| 930 | } |
| 931 | |
| 932 | #[component] |
| 933 | fn ManualComponentInstallation(component: HighlightedCode, style: HighlightedCode) -> Element { |
nothing calls this directly
no outgoing calls
no test coverage detected