chore: Move to prettier standard double quotes (#1309)

This commit is contained in:
Tom Moor
2020-06-20 13:59:15 -07:00
committed by GitHub
parent 2a3b9e2104
commit f43deb7940
444 changed files with 5988 additions and 5977 deletions

View File

@ -1,34 +1,34 @@
// @flow
import * as React from 'react';
import { Switch, Route, Redirect } from 'react-router-dom';
import Home from 'scenes/Home';
import Dashboard from 'scenes/Dashboard';
import Starred from 'scenes/Starred';
import Drafts from 'scenes/Drafts';
import Archive from 'scenes/Archive';
import Trash from 'scenes/Trash';
import Collection from 'scenes/Collection';
import KeyedDocument from 'scenes/Document/KeyedDocument';
import DocumentNew from 'scenes/DocumentNew';
import Search from 'scenes/Search';
import Settings from 'scenes/Settings';
import Details from 'scenes/Settings/Details';
import Notifications from 'scenes/Settings/Notifications';
import Security from 'scenes/Settings/Security';
import People from 'scenes/Settings/People';
import Groups from 'scenes/Settings/Groups';
import Slack from 'scenes/Settings/Slack';
import Zapier from 'scenes/Settings/Zapier';
import Shares from 'scenes/Settings/Shares';
import Tokens from 'scenes/Settings/Tokens';
import Export from 'scenes/Settings/Export';
import Events from 'scenes/Settings/Events';
import Error404 from 'scenes/Error404';
import * as React from "react";
import { Switch, Route, Redirect } from "react-router-dom";
import Home from "scenes/Home";
import Dashboard from "scenes/Dashboard";
import Starred from "scenes/Starred";
import Drafts from "scenes/Drafts";
import Archive from "scenes/Archive";
import Trash from "scenes/Trash";
import Collection from "scenes/Collection";
import KeyedDocument from "scenes/Document/KeyedDocument";
import DocumentNew from "scenes/DocumentNew";
import Search from "scenes/Search";
import Settings from "scenes/Settings";
import Details from "scenes/Settings/Details";
import Notifications from "scenes/Settings/Notifications";
import Security from "scenes/Settings/Security";
import People from "scenes/Settings/People";
import Groups from "scenes/Settings/Groups";
import Slack from "scenes/Settings/Slack";
import Zapier from "scenes/Settings/Zapier";
import Shares from "scenes/Settings/Shares";
import Tokens from "scenes/Settings/Tokens";
import Export from "scenes/Settings/Export";
import Events from "scenes/Settings/Events";
import Error404 from "scenes/Error404";
import Layout from 'components/Layout';
import SocketProvider from 'components/SocketProvider';
import Authenticated from 'components/Authenticated';
import { matchDocumentSlug as slug } from 'utils/routeHelpers';
import Layout from "components/Layout";
import SocketProvider from "components/SocketProvider";
import Authenticated from "components/Authenticated";
import { matchDocumentSlug as slug } from "utils/routeHelpers";
const NotFound = () => <Search notFound />;
const RedirectDocument = ({ match }: { match: Object }) => (