import React from 'react'; import styled from 'styled-components'; import BodyWrapper from '../components/BodyWrapper'; import { authUser } from '../actions'; import { REPORT_EMAIL } from '../config'; const Wrapper = styled.div` width: 600px; max-width: 97%; display: flex; flex-direction: column; align-items: flex-start; `; const ReportPage = () => (

Report abuse

Report abuses, malware and phishing links to the below email address. We will take them down within 12 hours.

{REPORT_EMAIL}

); ReportPage.getInitialProps = ({ req, reduxStore }) => { const token = req && req.cookies && req.cookies.token; if (token && reduxStore) reduxStore.dispatch(authUser(token)); return {}; }; export default ReportPage;