8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
|
class Shape {
|
||
|
constructor() {
|
||
|
window.document.getElementById("main").innerHTML = "Works";
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default Shape;
|