import * as React from 'react';
import BaseModalLayout from '..';
function baseModalLayoutWithMandatoryProps() {
return ;
}
function baseModalLayoutWithAllProps() {
return (
{}}
onHelpButtonClick={() => {}}
theme={'standard'}
>
{},
onScrollAreaChanged: () => {},
}}
/>
{}}
secondaryButtonText={'sb-text'}
secondaryButtonProps={{}}
secondaryButtonOnClick={() => {}}
actionsSize={'large'}
sideActions={}
theme={'standard'}
showFooterDivider
/>
}
/>
);
}
function baseModalLayoutWithCustomHeader() {
return (
Hello
}
/>
);
}