Remove Polices

This commit is contained in:
Matheus Breguêz 2020-06-29 17:06:47 -03:00
parent da9fc5bfdf
commit c8269ca134
1 changed files with 1 additions and 3 deletions

View File

@ -1,17 +1,15 @@
// @flow
import * as React from "react";
import { Helmet } from "react-helmet";
import PoliciesStore from "stores/PoliciesStore";
import AuthStore from "stores/AuthStore";
type Props = {
title: string,
favicon?: string,
policies: PoliciesStore,
auth: AuthStore,
};
const { policies, auth } = this.props;
const { auth } = this.props;
const { team } = auth;
const PageTitle = ({ title, favicon }: Props) => (