mirror of
https://github.com/openzim/warc2zim.git
synced 2025-10-19 14:33:17 +00:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
const okValue = 'This is working OK';
|
|
const otherValue = 'This is another value';
|
|
|
|
const okClass = 'green';
|
|
|
|
export {okClass, otherValue};
|
|
export default okValue;
|