11 lines
119 B
JavaScript
11 lines
119 B
JavaScript
var testProp = 'test property';
|
|
|
|
function testFunc() {
|
|
return 'test function';
|
|
}
|
|
|
|
export {
|
|
testFunc,
|
|
testProp
|
|
};
|