aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/About.js
blob: e64e9cd2bd4ed11b27634fe98f4dacef02dd6d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React, { useContext } from 'react';
import { AuthContext } from '../providers/AuthContext';
import GridLayout from '../layouts/GridLayout';

const About = () => {
    const { user } = useContext(AuthContext);

    return (
        <>
            {!user ? (
                <h1>hands that help</h1>
            ) : (
                <GridLayout>
                    <>
                    hands that help
                    </>
                </GridLayout>
            )}
        </>
    );
};

export default About;