From 378e5fa9a9a9d59fb172e3e9d474b312624ffd6f Mon Sep 17 00:00:00 2001 From: heyhiru Date: Sat, 11 Nov 2023 14:49:13 +0530 Subject: [PATCH] created dynamic slug file for rooms Signed-off-by: heyhiru --- client/src/pages/room/[slug].jsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 client/src/pages/room/[slug].jsx diff --git a/client/src/pages/room/[slug].jsx b/client/src/pages/room/[slug].jsx new file mode 100644 index 0000000..6bfde31 --- /dev/null +++ b/client/src/pages/room/[slug].jsx @@ -0,0 +1,9 @@ +import React from 'react' + +const RoomPage = () => { + return ( +

RoomPage

+ ) +} + +export default RoomPage; \ No newline at end of file