Correct the class name of GridSizer component

pull/4264/head
Deniz Kusefoglu 2018-08-23 12:15:41 -07:00
parent a5ef6a720b
commit 69b12f8103
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ interface State {
columns: number
}
@ErrorHandling
class CardSelectList extends PureComponent<Props, State> {
class GridSizer extends PureComponent<Props, State> {
public static defaultProps: Partial<Props> = {
cellWidth: 160,
width: null,
@ -108,4 +108,4 @@ class CardSelectList extends PureComponent<Props, State> {
}
}
export default CardSelectList
export default GridSizer