experimenting with imports

This commit is contained in:
Blue 2018-11-18 13:07:36 +03:00
parent 7822ec7b29
commit e4c6629f1f
2 changed files with 10 additions and 0 deletions

7
painting/shape.js Normal file
View file

@ -0,0 +1,7 @@
class Shape {
constructor() {
window.document.getElementById("main").innerHTML = "Works";
}
}
export default Shape;