Welcome to Electronic Shipping Agent
Navigate to the /api/fleets/random to get a random list of fleets. A fleet list is a collection of random fleets entries along with some other info, like the size of the anchorage for the test case:
{
"anchorageSize": {
"width": 33,
"height": 22
},
"fleets": [
{
"singleShipDimensions": {
"width": 10,
"height": 26
},
"shipDesignation": "Floating Production Storage and Offloading LNG Unit with Onboard Surveying Equipment",
"shipCount": 1
},
{
"singleShipDimensions": {
"width": 7,
"height": 20
},
"shipDesignation": "Floating Storage and Offloading LNG Unit",
"shipCount": 3
},
"... More fleets to follow ..."
]
}And each and every fleet has the following structure:
{
"singleShipDimensions": {
"width": 7,
"height": 20
},
"shipDesignation": "Floating Storage and Offloading LNG Unit",
"shipCount": 3
}Your task is to develop an front-end application that can take in random list of vessels and allow all the user to position them on an anchorage of a random size. Refer to README.md in the task repo for more info. GLHF! :D