Skip to content

Latest commit

 

History

History
42 lines (41 loc) · 1.13 KB

FOLDERS.md

File metadata and controls

42 lines (41 loc) · 1.13 KB

Project structure for SBL-Frontend

├── node_modules (.gitignore)
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
├── src
│   ├── hooks
│   │   ├── useClickOutside.ts
│   │   └── index.ts
│   ├── store
│   │   ├── useNavBarState.tsx
│   │   └── index.ts
│   ├── api
│   │   ├── useLAR.ts
│   │   ├── keycloak.ts
│   │   └── index.ts
│   ├── components
│   │   ├── componentA
│   │   │   ├── componentA.tsx
│   │   │   ├── childOfComponentA.tsx
│   │   │   ├── componentA.test.ts
│   │   │   └── index.ts
│   │   │
│   │   └── index.ts
│   ├── pages
│   │   ├── Home.tsx
│   │   ├── Footer.tsx
│   │   └── index.ts
│   ├── utils
│   │   ├── ...
│   │   └── index.ts
│   ├── index.js
│   ├── serviceWorker.js
│   └── setupTests.js
├── .gitignore
├── package.json
└── README.md
└── yarn.lock