adding done image

This commit is contained in:
Arjun Patel
2022-01-30 17:36:13 -08:00
parent 53ed0b8473
commit bd759118b3
5 changed files with 38 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
import getDynamicMeLayout from "../../components/Layouts/DynamicMeLayout";
import React from "react";
export default function Rooms() {
return <div>All caught up.</div>;
}
Rooms.getLayout = function getLayout(page: React.ReactElement) {
return getDynamicMeLayout(page);
};