chore: review changes

This commit is contained in:
Fayaz Ahmed
2024-05-15 11:51:36 +05:30
parent eeb17cd27c
commit 218b672498
2 changed files with 1 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
import mitt from 'mitt';
const emitter = mitt();
const bus = {
$on: emitter.on,
$off: emitter.off,
$emit: emitter.emit,
};
export default bus;