Create a new link tag in the head
(&self, props: LinkProps)
| 102 | |
| 103 | /// Create a new link tag in the head |
| 104 | fn create_link(&self, props: LinkProps) { |
| 105 | let attributes = props.attributes(); |
| 106 | self.create_head_element("link", &attributes, None); |
| 107 | } |
| 108 | |
| 109 | /// Check if we should create a new head component at all. If it returns false, the head component will be skipped. |
| 110 | /// |
nothing calls this directly
no test coverage detected