10 lines
153 B
Python
10 lines
153 B
Python
"""Display the page body."""
|
|
|
|
from pynecone.components.component import Component
|
|
|
|
|
|
class Body(Component):
|
|
"""A body component."""
|
|
|
|
tag = "body"
|