We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1842699 commit 324d1fcCopy full SHA for 324d1fc
1 file changed
src/plugin-slots/PageBannerSlot/index.tsx
@@ -3,11 +3,11 @@ import { PluginSlot } from '@openedx/frontend-plugin-framework';
3
import { PageBanner } from '@openedx/paragon';
4
5
export interface PageBannerSlotProps {
6
- show?: boolean;
7
- dismissible?: boolean;
8
- onDismiss?: () => void;
9
- className?: string;
10
- children?: ReactNode;
+ show: boolean;
+ dismissible: boolean;
+ onDismiss: () => void;
+ className: string;
+ children: ReactNode;
11
}
12
13
const PageBannerSlot: React.FC<PageBannerSlotProps> = ({
0 commit comments