mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-06 16:21:23 +05:30
17 lines
333 B
TypeScript
17 lines
333 B
TypeScript
import factory from '../factory';
|
|
import messages from './Permissions.intl.json';
|
|
import Body from './PermissionsBody';
|
|
|
|
export default factory({
|
|
title: messages.permissionsTitle,
|
|
body: Body,
|
|
footer: {
|
|
color: 'orange',
|
|
autoFocus: true,
|
|
label: messages.approve,
|
|
},
|
|
links: {
|
|
label: messages.decline,
|
|
},
|
|
});
|