Source code for duck.html.components.section

"""
Section component.
"""

from duck.html.components import InnerComponent


[docs] class Section(InnerComponent): """ Section component class. """
[docs] def get_element(self): return "section"