The default titie of reactpy is 'Reactpy', how to customize the title for reactpy #1069
Unanswered
johe123qwe
asked this question in
Question
Replies: 1 comment 3 replies
-
This can be done by passing extra options when configuring your application of choice: from fastapi import FastAPI
from reactpy.backend.fastapi import configure, Options
from reactpy import html
...
app = FastAPI()
configure(app, my_component, Options(head=html.head(html.title("My Title")))) |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Current Situation
Proposed Actions
I tried to check the documentation on the official website but I don't quite understand it.
Beta Was this translation helpful? Give feedback.
All reactions