Skip to content

Commit

Permalink
add docs
Browse files Browse the repository at this point in the history
  • Loading branch information
adhami3310 committed Sep 17, 2024
1 parent 49dca79 commit c7f9c60
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion reflex/components/dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ def load_dynamic_serializer():

@serializer
def make_component(component: Component) -> str:
"""Generate the code for a dynamic component."""
"""Generate the code for a dynamic component.
Args:
component: The component to generate code for.
Returns:
The generated code
"""
from reflex.compiler import templates, utils

rendered_components = {}
Expand Down

0 comments on commit c7f9c60

Please sign in to comment.