change format all file

This commit is contained in:
Ehsan
2025-05-18 01:18:35 +03:30
parent 4a57468e26
commit 254d5d4ebd
84 changed files with 721 additions and 651 deletions
+1 -3
View File
@@ -1,9 +1,7 @@
import Content from "@/components/panel/Content";
function LayoutPanel({ children }) {
return (
<Content children={children} />
);
return <Content children={children} />;
}
export default LayoutPanel;
+1 -1
View File
@@ -3,7 +3,7 @@ import Information from "@/data/information.json";
import Bank from "@/data/bank.json";
function UserAccount() {
return <UserAccountPage data={{information: Information, bank: Bank}} />;
return <UserAccountPage data={{ information: Information, bank: Bank }} />;
}
export default UserAccount;