| import solara | |
| from pages.core_dump import core_dump_process | |
| from pages.line_v import line_v | |
| from utils.utils import SharedSidebar | |
| def line(): | |
| with solara.Sidebar(): | |
| SharedSidebar() | |
| line_v() | |
| 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"), | |
| ] | |