We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16e413 commit 291b538Copy full SHA for 291b538
src/py/reactpy/reactpy/backend/_common.py
@@ -117,16 +117,7 @@ def vdom_head_elements_to_html(head: Sequence[VdomDict] | VdomDict | str) -> str
117
class CommonOptions:
118
"""Options for ReactPy's built-in backed server implementations"""
119
120
- head: Sequence[VdomDict] | VdomDict | str = (
121
- html.title("ReactPy"),
122
- html.link(
123
- {
124
- "rel": "icon",
125
- "href": "/_reactpy/assets/reactpy-logo.ico",
126
- "type": "image/x-icon",
127
- }
128
- ),
129
- )
+ head: Sequence[VdomDict] | VdomDict | str = (html.title("ReactPy App"),)
130
"""Add elements to the ``<head>`` of the application.
131
132
For example, this can be used to customize the title of the page, link extra
0 commit comments