pelanggaran.js 214 B

123456789
  1. export const getPelanggaran = async () => {
  2. try {
  3. const res = await fetch("http://localhost:5000/pelanggaran");
  4. return await res.json();
  5. } catch (error) {
  6. console.log("error", error);
  7. return false;
  8. }
  9. };