mirror of
https://github.com/Textualize/rich.git
synced 2025-09-02 08:27:33 +00:00
9 lines
218 B
Python
9 lines
218 B
Python
from rich import print
|
|
from rich.console import RenderGroup
|
|
from rich.panel import Panel
|
|
|
|
panel_group = RenderGroup(
|
|
Panel("Hello", style="on blue"),
|
|
Panel("World", style="on red"),
|
|
)
|
|
print(Panel(panel_group))
|