17 lines
568 B
TypeScript
17 lines
568 B
TypeScript
/*
|
|
* File: index.ts
|
|
* Description: Barrel export for Profile components
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
|
|
export { default as ProfileHeader } from './ProfileHeader';
|
|
export { default as SettingsPanel } from './SettingsPanel';
|
|
export { default as PreferencesForm } from './PreferencesForm';
|
|
export { default as SecuritySettings } from './SecuritySettings';
|
|
|
|
/*
|
|
* End of File: index.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|