Thibaut Boustany
7 years ago
No known key found for this signature in database
GPG Key ID: 32475B11A2B13EEC
1 changed files with
7 additions and
1 deletions
-
src/components/modals/ReleaseNotes.js
|
@ -4,8 +4,9 @@ import ReactMarkdown from 'react-markdown' |
|
|
import styled from 'styled-components' |
|
|
import styled from 'styled-components' |
|
|
|
|
|
|
|
|
import { MODAL_RELEASES_NOTES } from 'config/constants' |
|
|
import { MODAL_RELEASES_NOTES } from 'config/constants' |
|
|
import Modal, { ModalBody, ModalTitle, ModalContent } from 'components/base/Modal' |
|
|
import Modal, { ModalBody, ModalTitle, ModalContent, ModalFooter } from 'components/base/Modal' |
|
|
|
|
|
|
|
|
|
|
|
import Button from 'components/base/Button' |
|
|
import Box from 'components/base/Box' |
|
|
import Box from 'components/base/Box' |
|
|
import Text from 'components/base/Text' |
|
|
import Text from 'components/base/Text' |
|
|
|
|
|
|
|
@ -147,6 +148,11 @@ class ReleaseNotes extends PureComponent<*, *> { |
|
|
<ReactMarkdown>{markdown}</ReactMarkdown> |
|
|
<ReactMarkdown>{markdown}</ReactMarkdown> |
|
|
</Notes> |
|
|
</Notes> |
|
|
</ModalContent> |
|
|
</ModalContent> |
|
|
|
|
|
<ModalFooter horizontal justifyContent="flex-end"> |
|
|
|
|
|
<Button onClick={onClose} primary> |
|
|
|
|
|
Continue |
|
|
|
|
|
</Button> |
|
|
|
|
|
</ModalFooter> |
|
|
</ModalBody> |
|
|
</ModalBody> |
|
|
) |
|
|
) |
|
|
} |
|
|
} |
|
|