Lint fixes.

This commit is contained in:
Jayden Seric 2019-06-11 10:51:52 +10:00
parent 13e627b1aa
commit 336ab535ab
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { graphql } from 'react-apollo'
import uploadsQuery from '../queries/uploads'
import { Table, Head, Cell } from './Table'
import { Cell, Head, Table } from './Table'
const Uploads = ({ data: { uploads = [] } }) => (
<Table

View File

@ -4,7 +4,7 @@ import { ApolloClient } from 'apollo-client'
import { createUploadLink } from 'apollo-upload-client'
import App, { Container } from 'next/app'
import Head from 'next/head'
import { getDataFromTree, ApolloProvider } from 'react-apollo'
import { ApolloProvider, getDataFromTree } from 'react-apollo'
const createApolloClient = (cache = {}) =>
new ApolloClient({