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

    return (
        <>
            {!user ? (
                <h1>we cant even get jobs, how we gonna employee you??</h1>
            ) : (
                <GridLayout>
                    <>
                    we cant even get jobs, how we gonna employee you??
                    </>
                </GridLayout>
            )}
        </>
    );
};

export default Careers;