Create a new script tag in the head
(&self, props: ScriptProps)
| 90 | |
| 91 | /// Create a new script tag in the head |
| 92 | fn create_script(&self, props: ScriptProps) { |
| 93 | let attributes = props.attributes(); |
| 94 | self.create_head_element("script", &attributes, props.script_contents().ok()); |
| 95 | } |
| 96 | |
| 97 | /// Create a new style tag in the head |
| 98 | fn create_style(&self, props: StyleProps) { |
nothing calls this directly
no test coverage detected