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

    return (
        <>
            {!user ? (
                <h1>you got a DM from Barak Obamna</h1>
            ) : (
                <GridLayout>
                    <>
                    you got a DM from Barak Obamna
                    </>
                </GridLayout>
            )}
        </>
    );
};

export default Messages;