sectioning.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. """Element classes. This is an auto-generated file. Do not edit. See ../generate.py."""
  2. from reflex.vars import Var as Var
  3. from .base import BaseHTML
  4. class Body(BaseHTML): # noqa: E742
  5. """Display the body element."""
  6. tag = "body"
  7. class Address(BaseHTML): # noqa: E742
  8. """Display the address element."""
  9. tag = "address"
  10. class Article(BaseHTML): # noqa: E742
  11. """Display the article element."""
  12. tag = "article"
  13. class Aside(BaseHTML): # noqa: E742
  14. """Display the aside element."""
  15. tag = "aside"
  16. class Footer(BaseHTML): # noqa: E742
  17. """Display the footer element."""
  18. tag = "footer"
  19. class Header(BaseHTML): # noqa: E742
  20. """Display the header element."""
  21. tag = "header"
  22. class H1(BaseHTML): # noqa: E742
  23. """Display the h1 element."""
  24. tag = "h1"
  25. class H2(BaseHTML): # noqa: E742
  26. """Display the h1 element."""
  27. tag = "h2"
  28. class H3(BaseHTML): # noqa: E742
  29. """Display the h1 element."""
  30. tag = "h3"
  31. class H4(BaseHTML): # noqa: E742
  32. """Display the h1 element."""
  33. tag = "h4"
  34. class H5(BaseHTML): # noqa: E742
  35. """Display the h1 element."""
  36. tag = "h5"
  37. class H6(BaseHTML): # noqa: E742
  38. """Display the h1 element."""
  39. tag = "h6"
  40. class Main(BaseHTML): # noqa: E742
  41. """Display the main element."""
  42. tag = "main"
  43. class Nav(BaseHTML): # noqa: E742
  44. """Display the nav element."""
  45. tag = "nav"
  46. class Section(BaseHTML): # noqa: E742
  47. """Display the section element."""
  48. tag = "section"