()
| 32 | } |
| 33 | |
| 34 | export default function ProgramPage() { |
| 35 | const loaderData = useLoaderData(); |
| 36 | return ( |
| 37 | <> |
| 38 | <SideBar loaderData={loaderData}/> |
| 39 | <Paper |
| 40 | className="ProgramContent" |
| 41 | elevation={0} |
| 42 | sx={{ |
| 43 | bgcolor: (theme) => theme.palette.surface, |
| 44 | }}> |
| 45 | <Outlet/> |
| 46 | </Paper> |
| 47 | </> |
| 48 | ) |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected