adding all pagees and all sort of working now

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