Skip to content

Commit

Permalink
fix : 게임이 그려지지 않는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minseok128 committed Aug 25, 2024
1 parent c6caa9a commit 596da1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Game-Local.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ import { GameDefault } from "./Game-Default.js";
import { GameCore } from "./Game-Core.js";
export class GameLocal extends GameDefault {
mounted(){
this.children.push(new GameCore(document.querySelector("div#game"), this.props));
new GameCore(document.querySelector("div#game"), this.props);
}
}

0 comments on commit 596da1f

Please sign in to comment.