Create a new style tag in the head
(&self, props: StyleProps)
| 96 | |
| 97 | /// Create a new style tag in the head |
| 98 | fn create_style(&self, props: StyleProps) { |
| 99 | let attributes = props.attributes(); |
| 100 | self.create_head_element("style", &attributes, props.style_contents().ok()); |
| 101 | } |
| 102 | |
| 103 | /// Create a new link tag in the head |
| 104 | fn create_link(&self, props: LinkProps) { |
nothing calls this directly
no test coverage detected