Simple Map
See https://openlayers.org/en/latest/examples/simple.html
import React from "react";
import "ol/ol.css";
import { Map } from "@react-ol/fiber";
export const ExampleSimple = () => (
<Map>
<olView initialCenter={[0, 0]} initialZoom={2} />
<olLayerTile>
<olSourceOSM />
</olLayerTile>
</Map>
);