Skip to content

Commit 6dc8cc9

Browse files
committed
fix(playground): importing modules update
1 parent 1b0a44d commit 6dc8cc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

playground/extensions/extensions-1-tools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If you want to create your own module, see [How to get started](extensions-2-tut
1010

1111
## Importing the module
1212

13-
### Maven modules
13+
### Modules on maven
1414

1515
You will need to include the module dependency in the pom.xml of your project.
1616

@@ -47,13 +47,13 @@ Custom modules usually come up with a `.java` and a `.js` file. Place these file
4747

4848
You will also need to import your module to the `src/main/resources/view/config.js` file, in the `modules` array.
4949

50-
Example of a project using the Graphic Entity Module and the old End Screen Module:
50+
Example of a project using the Graphic Entity Module and a custom module:
5151
`config.js`
5252
```javascript
5353
import { GraphicEntityModule } from './entity-module/GraphicEntityModule.js';
54-
import { EndScreenModule } from './modules/endscreen/EndScreenModule.js';
54+
import { CustomModule } from './modules/custom/CustomModule.js';
5555

5656
export const modules = [
5757
GraphicEntityModule,
58-
EndScreenModule
58+
CustomModule
5959
];

0 commit comments

Comments
 (0)