Change the screenshot and the example log message

This commit is contained in:
Namhyeon Go 2024-09-26 18:35:25 +09:00
parent f03c0ef913
commit a0933153ba
2 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 152 KiB

View File

@ -84,10 +84,10 @@ Router.add('/notepad', function(render) {
Router.add('/components', function(render) {
render("app\\components.html", {});
console.log("log message");
console.warn("warning message");
console.info("information message");
console.error("information message");
console.log("example log message");
console.warn("example warning message");
console.info("example information message");
console.error("example error message");
});