mirror of
https://github.com/apache/superset.git
synced 2026-04-10 03:45:22 +00:00
chore: improve React import reference consistency (#18608)
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
* specific language governing permissions and limitations
|
||||
* under the License.
|
||||
*/
|
||||
import React, { CSSProperties } from 'react';
|
||||
import React, { CSSProperties, forwardRef } from 'react';
|
||||
|
||||
export interface PaginationProps {
|
||||
pageCount: number; // number of pages
|
||||
@@ -72,7 +72,7 @@ export function generatePageItems(
|
||||
}
|
||||
|
||||
export default React.memo(
|
||||
React.forwardRef(function Pagination(
|
||||
forwardRef(function Pagination(
|
||||
{
|
||||
style,
|
||||
pageCount,
|
||||
|
||||
Reference in New Issue
Block a user