aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/modal/modal-content/modal-content.component.js
blob: 8beb854e00cb19177b16478770fb674c230dcfce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'

export default class ModalContent extends PureComponent {
  static propTypes = {
    title: PropTypes.string,
    description: PropTypes.string,
  }

  render () {
    const { title, description } = this.props

    return (
      <div className="modal-content">
        <div className="modal-content__title">
          { title }
        </div>
        <div className="modal-content__description">
          { description }
        </div>
      </div>
    )
  }
}