Newer
Older
import React, { Fragment } from 'react'
import { ActionLink, Text, Row } from 'pubsweet-component-faraday-ui'
const SubmissionStatement = () => (
<Fragment>

Daniel Sandu
committed
<Row mb={1} mt={2}>
<Text>
This manuscript is not currently submitted to or under consideration in
any other journals.
</Text>
</Row>

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

Daniel Sandu
committed
<Row mb={3}>
<Text>
You have read and understood the{' '}
<ActionLink to="https://www.hindawi.com/terms/">

Daniel Sandu
committed
</ActionLink>{' '}
and{' '}
<ActionLink to="https://www.hindawi.com/privacy/">
privacy policy
</ActionLink>{' '}
under which this manuscript will be processed.
</Text>
</Row>
</Fragment>
)
export default SubmissionStatement