mirror of
https://github.com/Nezumi-2711/react-training.git
synced 2026-09-23 04:19:48 +00:00
Fix style code format
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
// prettier-ignore
|
||||
const USER_PAGE = {
|
||||
SORTBY_OPTIONS: [
|
||||
{
|
||||
value: 'id',
|
||||
label: 'Sort by id',
|
||||
},
|
||||
{
|
||||
value: 'name',
|
||||
label: 'Sort by name',
|
||||
},
|
||||
{
|
||||
value: 'identifiedCode',
|
||||
label: 'Sort by identified code',
|
||||
},
|
||||
{
|
||||
value: 'phone',
|
||||
label: 'Sort by phone',
|
||||
},
|
||||
{
|
||||
value: 'roomId',
|
||||
label: 'Sort by room',
|
||||
},
|
||||
],
|
||||
ORDERBY_OPTIONS: [
|
||||
{
|
||||
value: 'asc',
|
||||
label: 'Ascending',
|
||||
},
|
||||
{
|
||||
value: 'desc',
|
||||
label: 'Descending',
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export { USER_PAGE };
|
||||
Reference in New Issue
Block a user