feat: start of dm overview page

This commit is contained in:
Samuel 2024-12-12 18:44:44 +01:00
parent 0e6f5a24bd
commit 8451a484ff
14 changed files with 442 additions and 34 deletions

View file

@ -0,0 +1,8 @@
import type { Component } from "solid-js";
import type { RouteSectionProps } from "@solidjs/router";
export const GroupId: Component<RouteSectionProps> = (props) => {
const groupId = () => Number(props.params.groupid);
};
export default GroupId;