import React, { useContext } from 'react'; import { AuthContext } from '../providers/AuthContext'; import GridLayout from '../layouts/GridLayout'; const RecruitVolunteers = () => { const { user } = useContext(AuthContext); return ( <> {!user ? (

uncle sam want u

) : ( <> uncle sam want u )} ); }; export default RecruitVolunteers;