Trying to use the DB (not working)

This commit is contained in:
Clayzxr
2025-01-18 23:38:29 +01:00
parent 30ffc90b69
commit 4057bb488c
5 changed files with 33 additions and 115 deletions
+2 -5
View File
@@ -1,13 +1,11 @@
import { RouteConfig } from "$fresh/server.ts";
import UploadStudents from "../(_islands)/UploadStudents.tsx";
//import ConsultStudents from "../(_islands)/ConsultStudents.tsx";
//import EditStudents from "../(_islands)/EditStudents.tsx";
export const config: RouteConfig = {
skipAppWrapper: false,
skipInheritedLayouts: false,
skipAppWrapper: false,
skipInheritedLayouts: false,
};
export default function Students() {
@@ -16,7 +14,6 @@ export default function Students() {
<h1>Manage Promotions</h1>
<UploadStudents />
<hr />
</section>
);
}