9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
|
import commonVars from "./_common.mjs";
|
||
|
const self = () => {
|
||
|
return commonVars;
|
||
|
};
|
||
|
const spaceLight = {
|
||
|
name: 'Space',
|
||
|
self
|
||
|
};
|
||
|
export default spaceLight;
|