mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-08 07:16:49 +00:00
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
import { helper } from '@ember/component/helper';
|
|
|
|
export default helper(function spreadWidgetOptions([params]) {
|
|
const { id, options } = params;
|
|
const gridOptions = { id, ...options };
|
|
return gridOptions;
|
|
});
|