0% found this document useful (0 votes)
63 views2 pages

FE Project Structure

This document outlines the file structure of a project. It includes folders for configuration files, public assets, application source code, pages, shared resources, and root level configuration files. The source code folder contains component files organized by type. Page folders hold additional files for containers, services, stores and views. Shared resources include common base classes, components, containers, stores and utilities.

Uploaded by

Tuan Truong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
63 views2 pages

FE Project Structure

This document outlines the file structure of a project. It includes folders for configuration files, public assets, application source code, pages, shared resources, and root level configuration files. The source code folder contains component files organized by type. Page folders hold additional files for containers, services, stores and views. Shared resources include common base classes, components, containers, stores and utilities.

Uploaded by

Tuan Truong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

config

|--- common.properties.js
|--- dev.properties.js
public
|--- index.html
|--- favicon.ico
|--- manifest.json
src
|--- components
| |--- buttons
| | |--- AddButton.tsx
| | |--- DeleteButton.tsx
| | |--- HelpButton.tsx
| | |--- SubmitButton.tsx
| |--- DrawerComponent.tsx
| |--- HRMBreadcrumb.tsx
| |--- IconMetanet.tsx
| |--- LoadingFullScreen.tsx
| |--- Sidebar.tsx
| |--- Sidebar-timesheet.tsx
|--- i18n
| |--- hrm_en.json
| |--- hrm_kr.json
|--- images
| |--- logo_small.png
| |--- metanet-background.jpg
|--- mobile-routes
| |--- index.tsx
| |--- MobileNotFoundPage.tsx
| |--- MobileRoutesAuthorization.tsx
| |--- registeredPathComponentsTimesheet.json
| |--- Routes.tsx
|--- pages
| |--- user-management
| | |--- containers
| | | |--- UserDetailContainer.tsx
| | |--- i18n
| | | |--- i18n_en.json
| | | |--- i18n_kr.json
| | |--- services
| | | |--- UserService.ts
| | |--- static
| | | |--- searchPanelForm.tsx
| | |--- stores
| | | |--- UserStore.ts
| | |--- views
| | | |--- UserManagementView.tsx
| | index.tsx
| | style.less
|--- pages-mobile
| |--- user-info
| | |--- containers
| | | |--- UserInfo.tsx
| | |--- i18n
| | | |--- i18n_en.json
| | | |--- i18n_kr.json
| | |--- services
| | | |--- UserService.ts
| | |--- stores
| | | |--- UserInfoStore.ts
| | |--- views
| | | |--- UserInfoView.tsx
| | index.tsx
| | style.less
|--- Routes
| |--- index.tsx
| |--- registeredPathComponents.json
| |--- registeredPathComponentsTimesheet.json
| |--- RoutesAuthorization.tsx
| |--- Routes.tsx
|--- shared
| |--- base
| |--- components
| |--- containers
| |--- layouts
| |--- mobile-models
| |--- mobile-stores
| |--- models
| |--- services
| |--- stores
| |--- timeline
| |--- utils
|--- 404.html
|--- index.tsx
|--- MobileMultiLanguageProvider.tsx
|--- MultiLanguageProvider.tsx
config-overrides.js
Dockerfile
jest.config.js
package.json
tsconfig.json

You might also like