Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 661 Bytes

FRONTEND-WIKI.md

File metadata and controls

35 lines (28 loc) · 661 Bytes

Front End Wiki

Preposed hierarchy (Bryan):

.
├── App.css
├── App.js
├── App.test.js
├── actions
│   └── index.js
├── components
│   ├── addEvent.js
│   ├── event.js
│   ├── eventList.js
│   ├── foodForm.js
│   ├── guests.js
│   ├── login.js
│   ├── meetingPlace.js
│   ├── potluckInfo.js
│   └── signup.js
├── index.css
├── index.js
├── reducers
├── setupTests.js
└── utils
    ├── PrivateRoute.js
    └── axiosWithAuth.js

4 directories, 18 files
    
    
    ```