mirror of https://github.com/webpack/webpack.git
12 lines
127 B
JavaScript
12 lines
127 B
JavaScript
|
const a = 10;
|
||
|
const b = 20;
|
||
|
|
||
|
class MyClass {
|
||
|
getValue() {
|
||
|
return "my-class";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default MyClass;
|
||
|
export { a, b };
|