LOA UI completed (without integration)

This commit is contained in:
2025-09-15 18:32:20 -04:00
parent 456c29a731
commit 303b72a160
33 changed files with 984 additions and 7 deletions

12
api/routes/loa.js Normal file
View File

@@ -0,0 +1,12 @@
const express = require('express');
const router = express.Router();
// DB pool (same as used in api/index.js)
const pool = require('../db');
//post a new LOA
router.post("/", async (req, res) => {
})
module.exports = router;