This commit is contained in:
Keith Fung 2020-10-05 10:23:39 -04:00
Π ΠΎΠ΄ΠΈΡ‚Π΅Π»ΡŒ 5e154c8a51
ΠšΠΎΠΌΠΌΠΈΡ‚ 322ddce83f
1 ΠΈΠ·ΠΌΠ΅Π½Ρ‘Π½Π½Ρ‹Ρ… Ρ„Π°ΠΉΠ»ΠΎΠ²: 2 Π΄ΠΎΠ±Π°Π²Π»Π΅Π½ΠΈΠΉ ΠΈ 2 ΡƒΠ΄Π°Π»Π΅Π½ΠΈΠΉ

ΠŸΡ€ΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ Ρ„Π°ΠΉΠ»

@ -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<LargeCardProps> = ({ alignToStart, chil
},
}}
>
{children || null}
<CardSection>{children || null}</CardSection>
</Card>
);
};