aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/RecruitVolunteers.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/RecruitVolunteers.js')
-rw-r--r--src/pages/RecruitVolunteers.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/pages/RecruitVolunteers.js b/src/pages/RecruitVolunteers.js
new file mode 100644
index 0000000..c637656
--- /dev/null
+++ b/src/pages/RecruitVolunteers.js
@@ -0,0 +1,23 @@
+import React, { useContext } from 'react';
+import { AuthContext } from '../providers/AuthContext';
+import GridLayout from '../layouts/GridLayout';
+
+const RecruitVolunteers = () => {
+ const { user } = useContext(AuthContext);
+
+ return (
+ <>
+ {!user ? (
+ <h1>uncle sam want u</h1>
+ ) : (
+ <GridLayout>
+ <>
+ uncle sam want u
+ </>
+ </GridLayout>
+ )}
+ </>
+ );
+};
+
+export default RecruitVolunteers; \ No newline at end of file