got the middle scrolling correct

This commit is contained in:
2024-08-27 20:52:41 -06:00
parent 72f391dcf9
commit 6d760dbe6c
6 changed files with 35 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
import { LocalModule } from "@/models/local/localModules";
import React from "react";
export default function ExpandableModule({ module }: { module: LocalModule }) {
return (
<details>
<summary> {module.name}</summary>
expanded details
</details>
);
}