mirror of
https://github.com/strapi/strapi.git
synced 2025-07-29 03:50:26 +00:00
20 lines
290 B
JavaScript
20 lines
290 B
JavaScript
module.exports = ({
|
|
user: {
|
|
firstname: {
|
|
className: 'col-md-6'
|
|
},
|
|
lastname: {
|
|
className: 'col-md-6'
|
|
},
|
|
about: {
|
|
className: 'col-md-12'
|
|
},
|
|
createdAt: {
|
|
className: 'col-md-6'
|
|
},
|
|
status: {
|
|
className: 'col-md-6'
|
|
}
|
|
}
|
|
});
|