Skip to content

Commit

Permalink
refactor: support newly added components
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Mar 11, 2024
1 parent d86d15e commit 5c59133
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def Page():
"""

from . import NoPage
from solara.website.components import NoPage

title = "Cookies and Headers"
Page = NoPage
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
import solara
import solara.autorouting
import solara.lab
from solara.website.components import NoPage
from solara.website.utils import apidoc

from . import NoPage

title = "Task"
Page = NoPage
__doc__ += apidoc(solara.lab.task) # type: ignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@
import solara
import solara.autorouting
import solara.lab
from solara.website.components import NoPage
from solara.website.utils import apidoc

from . import NoPage

title = "use_task"
Page = NoPage
__doc__ += apidoc(solara.lab.use_task) # type: ignore

0 comments on commit 5c59133

Please sign in to comment.