aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/Profile.js
blob: 377624538545e718eb7c64eee12b81be29ebf0a6 (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 Profile = () => {
    const { user } = useContext(AuthContext);

    return (
        <>
            {!user ? (
                <h1>private</h1>
            ) : (
                <GridLayout>
                    <>
                    private
                    </>
                </GridLayout>
            )}
        </>
    );
};

export default Profile;