Layers
/ API Reference
Layers
/ API Reference

LayerContextProvider

A React context provider that wraps your application and makes the layer context available to all components.

The Gist

import { LayerContextProvider } from '@weser/layers'

import App from './App'

function Page() {
  return (
    <LayerContextProvider>
      <App />
    </LayerContextProvider>
  )
}
On this page