Active player list

This commit is contained in:
2023-10-04 04:09:01 -06:00
parent 4a4563ba85
commit b63db82a99
27 changed files with 544 additions and 136 deletions

12
routes/players.tsx Normal file
View File

@@ -0,0 +1,12 @@
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>
)
}