mcgrizz/routes/players.tsx
2023-10-04 04:09:01 -06:00

12 lines
279 B
TypeScript

import { Content } from "../components/Content.tsx";
import { ActivePlayerList } from "../islands/players.tsx";
export default function PlayerManger() {
return (
<div className="container p-8">
<Content>
<ActivePlayerList />
</Content>
</div>
)
}