summaryrefslogtreecommitdiffstats
path: root/examples/group2.py
blob: 13be0704fcee3e1510570f636ba45ebe09a7565b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from rich import print
from rich.console import render_group
from rich.panel import Panel


@render_group()
def get_panels():
    yield Panel("Hello", style="on blue")
    yield Panel("World", style="on red")


print(Panel(get_panels()))