working on canvas and widget

This commit is contained in:
paul
2024-08-08 16:21:19 +05:30
parent 358282c9f0
commit 35cc57c453
12 changed files with 508 additions and 70 deletions

8
src/utils/errors.js Normal file
View File

@@ -0,0 +1,8 @@
export class NotImplementedError extends Error {
constructor(message) {
super(message)
this.message = message
}
}