JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//api-maps.yandex.ru/2.1-dev/?lang=ru-RU&amp;coordorder=longlat"></script>
<div id="map"></div>

CSS

#map {
    width: 100%;
    height: 400px;
}

JavaScript

ymaps.ready(function () {
  var map = new ymaps.Map('map', {
    center: [37.62308129696348, 55.75657808452085],
    zoom: 16
  });

  var objectManager = new ymaps.ObjectManager({
      clusterize: false
  });

  var objects = {"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"LineString","coordinates":[[37.61817178118972,55.755756622757026],[37.62726983416824,55.7574022518306]]}}]};

  map.geoObjects.add(objectManager);
  objectManager.add(objects);
});