123456789101112131415161718192021222324252627282930 |
- """A bare component."""
- from __future__ import annotations
- from typing import Any
- from reflex.components.component import Component
- from reflex.components.tags import Tag
- from reflex.components.tags.tagless import Tagless
- from reflex.vars import Var
- class Bare(Component):
- """A component with no tag."""
- contents: Var[str]
- @classmethod
- def create(cls, contents: Any) -> Component:
- """Create a Bare component, with no tag.
- Args:
- contents: The contents of the component.
- Returns:
- The component.
- """
- return cls(contents=str(contents)) # type: ignore
- def _render(self) -> Tag:
- return Tagless(contents=str(self.contents))
|