Skip to main content

Layout screen

Layout của screen

  import { LayoutScreen, ActionLayoutScreenProps } from  '@xobuilders/ui'

const actions: ActionLayoutScreenProps[] = [
{ title: i18n.t('general.cancel'), onAction: handleCancle },
{ title: i18n.t('styles.select'), onAction: goBack, variant: 'primary', disabled: handle === '' },
];

return (
<LayoutScreen title="Sample" goBack={goBack} actions={actions} bottomComponent={<p>lew lew</p>}>
<p>This is children component</p>
</LayoutScreen>
)