Electronic Shipping Agent

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": 27,
        "height": 19
    },
    "fleets": [
        {
            "singleShipDimensions": {
                "width": 5,
                "height": 1
            },
            "shipDesignation": "Spec-ops Nuclear Hexamaran with First-Aid Kits",
            "shipCount": 3
        },
        {
            "singleShipDimensions": {
                "width": 2,
                "height": 11
            },
            "shipDesignation": "Industrial Fresh Water Tanker with On-board Crane",
            "shipCount": 5
        },
        "... More fleets to follow ..."
    ]
}

And each and every fleet has the following structure:

{
    "singleShipDimensions": {
        "width": 8,
        "height": 21
    },
    "shipDesignation": "Floating Drilling Production Storage and Offloading Raw Ore Processing Unit",
    "shipCount": 1
}

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