File size: 487 Bytes
b9d0cf5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import solara
from pages.core_dump import core_dump_process
from pages.line_v import line_v
from utils.utils import SharedSidebar
@solara.component
def line():
with solara.Sidebar():
SharedSidebar()
line_v()
@solara.component
def core_dump():
# with solara.Sidebar():
# SharedSidebar()
core_dump_process()
routes = [
solara.Route(path="/", component=core_dump, label="Core Dump"),
solara.Route(path="line_v", component=line, label="Line_v"),
]
|