refactor(frontend): extract ProfileForm and PasswordChangeForm from ProfilePage

- Create components/profile/ProfileForm.jsx (192 lines)
- Create components/profile/PasswordChangeForm.jsx (99 lines)
- Create components/profile/index.js barrel export
- Reduce ProfilePage.jsx from 394 → 84 lines (-79%)
This commit is contained in:
Radosław Gierwiało
2025-11-23 22:13:56 +01:00
parent 185c485ec7
commit 93ff331bfb
4 changed files with 328 additions and 316 deletions

View File

@@ -0,0 +1,2 @@
export { default as ProfileForm } from './ProfileForm';
export { default as PasswordChangeForm } from './PasswordChangeForm';