Skip to content

Commit

Permalink
import Room in place of Canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
deveshidwivedi committed Jun 20, 2024
1 parent 1aae389 commit ef0fe22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { Inter } from "next/font/google";
import Canvas from "@/modules/room/components/Canvas";
import Room from "@/modules/room/components/Room";


const inter = Inter({ subsets: ["latin"] });

export default function Home() {
return <Canvas />;
return <Room />;
}

0 comments on commit ef0fe22

Please sign in to comment.