Skip to content
Snippets Groups Projects
SubmissionStatement.js 1021 B
Newer Older
import React, { Fragment } from 'react'
import { ActionLink, Text, Row } from 'pubsweet-component-faraday-ui'

const SubmissionStatement = () => (
  <Fragment>
      <Text>
        This manuscript is not currently submitted to or under consideration in
        any other journals.
      </Text>
    </Row>

      <Text>
        The manuscript complies with all relevant{' '}
        <ActionLink to="https://www.hindawi.com/ethics/">
          publication and research ethics policies.
        </ActionLink>
      </Text>
    </Row>

      <Text>
        You have read and understood the{' '}
        <ActionLink to="https://www.hindawi.com/terms/">
        <ActionLink to="https://www.hindawi.com/privacy/">
        </ActionLink>{' '}
        under which this manuscript will be processed.
      </Text>
    </Row>
  </Fragment>
)

export default SubmissionStatement