Skip to content

Commit

Permalink
refactor(editor): change export statement to export all from Editor a…
Browse files Browse the repository at this point in the history
…nd EditorContainer

The export statement in the index file has been refactored to export all from Editor and EditorContainer instead of exporting them individually. This change simplifies the code and makes it easier to manage exports from the index file.
  • Loading branch information
ktun95 committed Jan 28, 2025
1 parent 97ed70c commit ca5e8fc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/editor/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export { Editor } from "./Editor"
export * from "./Editor"
export * from "./EditorContainer"
export * from "./utils"

0 comments on commit ca5e8fc

Please sign in to comment.