Login @email [email protected] password a12345
Travel map is an application for those who love order in photos after each trip.
- the ability to sort photos by country;
- automatic sorting of photos by countries;
- View photos of the selected country.
- implement login / registration form on the local server;
- implement user database:
[{
login
:true
,username
:loginName
,password
: 'password',memory
: [{country
: 'countryName';url
:[img1.jpg,img2.jpg,...]
},{...}] },{...}];
- display a map of the world;
- display a list of countries in the world;
- implement button to call the window for adding photos;
- implement button to add photos;
- display added photos;
- implement sorting of photos by metadata;
procject/
├── src/
│ ├── assets/ - dir for a static images, svgs, audio, etc
│ │ ├── img/ - dir for png/jpeg images
│ │ ├── svg/ - dir for svg images (could be omited if small amount)
│ │ └── favicon.ico - favicon file
│ │
│ ├── components/ - dir for presentative components
│ │ └── component_name/ - example of component directory
│ │ ├── styles/
│ │ │ └── index.css
│ │ └── index.jsx
│ │
│ ├── index.html - main html file
│ ├── routing.jsx - file with react-router for example that defines pages of app
│ └── index.jsx - main jsx file
│
├── package.json
└── README.md