File tree 5 files changed +10
-10
lines changed
5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Component } from 'react'
2
2
import { graphql } from 'react-apollo'
3
3
import gql from 'graphql-tag'
4
4
import uploadsQuery from '../queries/uploads'
5
- import Field from './field '
5
+ import Field from './Field '
6
6
7
7
class UploadBlob extends Component {
8
8
state = {
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
import { graphql } from 'react-apollo'
2
2
import uploadsQuery from '../queries/uploads'
3
- import { Table , Head , Cell } from './table '
3
+ import { Table , Head , Cell } from './Table '
4
4
5
5
const Uploads = ( { data : { uploads = [ ] } } ) => (
6
6
< Table
Original file line number Diff line number Diff line change 1
- import Page from '../components/page '
2
- import Section from '../components/section '
3
- import UploadFile from '../components/upload-file '
4
- import UploadFileList from '../components/upload-filelist '
5
- import UploadBlob from '../components/upload-blob '
6
- import Uploads from '../components/uploads '
1
+ import Page from '../components/Page '
2
+ import Section from '../components/Section '
3
+ import UploadFile from '../components/UploadFile '
4
+ import UploadFileList from '../components/UploadFileList '
5
+ import UploadBlob from '../components/UploadBlob '
6
+ import Uploads from '../components/Uploads '
7
7
import withData from '../providers/with-data'
8
8
9
- const HomePage = ( ) => (
9
+ const IndexPage = ( ) => (
10
10
< Page title = "Apollo upload examples" >
11
11
< img
12
12
src = "/static/apollo-upload-logo.svg"
@@ -29,4 +29,4 @@ const HomePage = () => (
29
29
</ Page >
30
30
)
31
31
32
- export default withData ( HomePage )
32
+ export default withData ( IndexPage )
You can’t perform that action at this time.
0 commit comments