diff --git a/src/components/LargeCard.tsx b/src/components/LargeCard.tsx index 01105ce..7a7a863 100644 --- a/src/components/LargeCard.tsx +++ b/src/components/LargeCard.tsx @@ -1,6 +1,6 @@ import React from 'react'; import { useTheme } from '@fluentui/react-theme-provider'; -import { Card } from '@uifabric/react-cards'; +import { Card, CardSection } from '@uifabric/react-cards'; export interface LargeCardProps { alignToStart?: boolean; @@ -21,7 +21,7 @@ const LargeCard: React.FunctionComponent = ({ alignToStart, chil }, }} > - {children || null} + {children || null} ); };