From 91890af9d86b82417f272813c63a18eb1967edfb Mon Sep 17 00:00:00 2001 From: Greg Venech Date: Fri, 3 Aug 2018 14:16:13 -0400 Subject: [PATCH] docs(CellMeasurer): fix `import` statement The `Grid` component isn't used in this example, it was probably a remnant of copy-pasting or something. --- docs/CellMeasurer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/CellMeasurer.md b/docs/CellMeasurer.md index 15b7234cd..1608cbf67 100644 --- a/docs/CellMeasurer.md +++ b/docs/CellMeasurer.md @@ -116,7 +116,7 @@ To support this, a function-child is passed to `CellMeasurer` which then receive ```jsx import React from 'react'; -import { CellMeasurer, CellMeasurerCache, Grid } from 'react-virtualized'; +import { CellMeasurer, CellMeasurerCache, List } from 'react-virtualized'; // In this example, average cell height is assumed to be about 50px. // This value will be used for the initial `Grid` layout.