6 lines
85 B
JavaScript
6 lines
85 B
JavaScript
class Hello {
|
|
say () {
|
|
return 'hi child window';
|
|
}
|
|
}
|
|
module.exports = Hello;
|