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

    return (
        <>
            {!user ? (
                <h1>don't be a douche pls</h1>
            ) : (
                <GridLayout>
                    <>
                    don't be a douche pls
                    </>
                </GridLayout>
            )}
        </>
    );
};

export default TermsOfService;