9 lines
152 B
JavaScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import commonVars from "./_common.mjs";
2024-08-02 18:19:39 +08:00
function self() {
2024-01-29 09:26:07 +08:00
return commonVars;
2024-08-02 18:19:39 +08:00
}
2024-01-29 09:26:07 +08:00
const flexLight = {
name: 'Flex',
self
};
export default flexLight;