Initial commit

This commit is contained in:
takiguchi
2019-12-01 16:41:11 +01:00
commit 0e3d1d8749
7 changed files with 5694 additions and 0 deletions

5
src/entity.js Normal file
View File

@@ -0,0 +1,5 @@
export default class Entity {
constructor(id) {
this.id = id;
}
}

6
src/index.js Normal file
View File

@@ -0,0 +1,6 @@
import Entity from "./entity";
document.write("Je débute avec Webpack !");
const entity = new Entity('id test');
document.write(entity.id);