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

hands that help

) : ( <> hands that help )} ); }; export default About;