(opts)
| 252 | } |
| 253 | |
| 254 | function LoadableMap(opts) { |
| 255 | if (typeof opts.render !== "function") { |
| 256 | throw new Error("LoadableMap requires a `render(loaded, props)` function"); |
| 257 | } |
| 258 | |
| 259 | return createLoadableComponent(loadMap, opts); |
| 260 | } |
| 261 | |
| 262 | Loadable.Map = LoadableMap; |
| 263 |
nothing calls this directly
no test coverage detected
searching dependent graphs…