(source: HighlightedCode)
| 411 | |
| 412 | #[component] |
| 413 | fn CodeBlock(source: HighlightedCode) -> Element { |
| 414 | rsx! { |
| 415 | div { |
| 416 | class: "dx-code-block", |
| 417 | tabindex: "0", |
| 418 | PreviewCode { source: source.source } |
| 419 | } |
| 420 | CopyButton { position: "absolute", top: "0.5em", right: "0.5em" } |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | #[component] |
| 425 | fn PreviewCode(source: HighlightedSource) -> Element { |
nothing calls this directly
no outgoing calls
no test coverage detected