This commit is contained in:
Tom Moor
2018-08-07 08:30:48 -07:00
parent 9a440e4321
commit 2238d1a7fd
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import HelpText from 'components/HelpText';
import Document from 'models/Document'; import Document from 'models/Document';
type Props = { type Props = {
document: Document, document?: Document,
onSubmit: () => *, onSubmit: () => *,
}; };

View File

@ -1,7 +1,7 @@
// @flow // @flow
import * as React from 'react'; import * as React from 'react';
import { observer, inject } from 'mobx-react'; import { observer, inject } from 'mobx-react';
import { NewDocumentIcon, StarredIcon } from 'outline-icons'; import { NewDocumentIcon } from 'outline-icons';
import CenteredContent from 'components/CenteredContent'; import CenteredContent from 'components/CenteredContent';
import { ListPlaceholder } from 'components/LoadingPlaceholder'; import { ListPlaceholder } from 'components/LoadingPlaceholder';