"""Top-level component that wraps the entire app.""" from reflex.components.base.fragment import Fragment from reflex.components.component import Component from reflex.ivars.base import ImmutableVar class AppWrap(Fragment): """Top-level component that wraps the entire app.""" @classmethod def create(cls) -> Component: """Create a new AppWrap component. Returns: A new AppWrap component containing {children}. """ return super().create(ImmutableVar.create("children"))