Skip to content

Commit

Permalink
feat(virtual-list): remove declared but never used var
Browse files Browse the repository at this point in the history
  • Loading branch information
hankliu62 committed Apr 24, 2024
1 parent e9ff50a commit 80f0611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/virtual-list/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useCallback } from 'react';
import type { FixedSizeListProps, VariableSizeListProps } from 'react-window';
import { FixedSizeList, VariableSizeList } from 'react-window';
import type { FixedSizeListProps } from 'react-window';
import { FixedSizeList } from 'react-window';

export interface VirtualListProps<T> extends Omit<FixedSizeListProps<T>, 'children'> {
/**
Expand Down

0 comments on commit 80f0611

Please sign in to comment.