ran format command

This commit is contained in:
sara-pervana
2023-11-21 18:27:25 +01:00
committed by Sara Pervana
parent 8746b0ba65
commit 449a4fa49b
3 changed files with 14 additions and 21 deletions

View File

@@ -1,9 +1,5 @@
"use client";
export default function AccessPoint() {
return (
<div>
Access Point Page
</div>
)
}
return <div>Access Point Page</div>;
}

View File

@@ -1,9 +1,5 @@
"use client";
export default function DLG() {
return (
<div>
DLG Page
</div>
)
}
return <div>DLG Page</div>;
}