Skip to content

Commit 7426bbf

Browse files
committed
Renamed app component files.
1 parent 58901ac commit 7426bbf

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

app/components/upload-blob.js renamed to app/components/UploadBlob.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component } from 'react'
22
import { graphql } from 'react-apollo'
33
import gql from 'graphql-tag'
44
import uploadsQuery from '../queries/uploads'
5-
import Field from './field'
5+
import Field from './Field'
66

77
class UploadBlob extends Component {
88
state = {
File renamed without changes.
File renamed without changes.

app/components/uploads.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { graphql } from 'react-apollo'
22
import uploadsQuery from '../queries/uploads'
3-
import { Table, Head, Cell } from './table'
3+
import { Table, Head, Cell } from './Table'
44

55
const Uploads = ({ data: { uploads = [] } }) => (
66
<Table

app/pages/index.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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'
77
import withData from '../providers/with-data'
88

9-
const HomePage = () => (
9+
const IndexPage = () => (
1010
<Page title="Apollo upload examples">
1111
<img
1212
src="/static/apollo-upload-logo.svg"
@@ -29,4 +29,4 @@ const HomePage = () => (
2929
</Page>
3030
)
3131

32-
export default withData(HomePage)
32+
export default withData(IndexPage)

0 commit comments

Comments
 (0)