box.py 262 B

123456789101112
  1. """Declarative layout and common spacing props."""
  2. from __future__ import annotations
  3. from reflex import el
  4. from .base import LayoutComponent
  5. class Box(el.Div, LayoutComponent):
  6. """A fundamental layout building block, based on <div>."""
  7. tag = "Box"