loading device page with relative pathing

This commit is contained in:
Carter 2024-12-12 14:11:08 -06:00
parent 05f7765f82
commit 438451690b
8 changed files with 235 additions and 21 deletions

View file

@ -1,6 +1,5 @@
import { useMobile } from "hooks";
import PageContainer from "pages/PageContainer";
import { Outlet } from "react-router-dom";
import TeamList from "teams/TeamList";
export default function Teams() {
@ -8,7 +7,6 @@ export default function Teams() {
return (
<PageContainer padding={isMobile ? 0 : 2}>
<TeamList />
<Outlet/>
</PageContainer>
);
}