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

    return (
        <>
            {!user ? (
                <h1>don't contact us pls</h1>
            ) : (
                <GridLayout>
                    <>
                don't contact us pls
                    </>
                </GridLayout>
            )}
        </>
    );
};

export default ContactUs;