Skip to content

Commit

Permalink
fix: import FC from React
Browse files Browse the repository at this point in the history
  • Loading branch information
goshander committed Nov 22, 2023
1 parent a0c63d2 commit 48daab3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, {FC} from 'react';
import React from 'react';

import {
Button,
Expand Down Expand Up @@ -41,7 +41,7 @@ interface AsideHeaderShowcaseProps {
topAlert?: AsideHeaderTopAlertProps;
}

export const AsideHeaderShowcase: FC<AsideHeaderShowcaseProps> = ({
export const AsideHeaderShowcase: React.FC<AsideHeaderShowcaseProps> = ({
multipleTooltip = false,
initialCompact = false,
topAlert,
Expand Down

0 comments on commit 48daab3

Please sign in to comment.