Create a new meta tag in the head
(&self, props: MetaProps)
| 84 | |
| 85 | /// Create a new meta tag in the head |
| 86 | fn create_meta(&self, props: MetaProps) { |
| 87 | let attributes = props.attributes(); |
| 88 | self.create_head_element("meta", &attributes, None); |
| 89 | } |
| 90 | |
| 91 | /// Create a new script tag in the head |
| 92 | fn create_script(&self, props: ScriptProps) { |
nothing calls this directly
no test coverage detected