28 lines
526 B
JavaScript
28 lines
526 B
JavaScript
import { defineMessages, injectIntl } from 'react-intl'
|
|
import ImmutablePureComponent from 'react-immutable-pure-component'
|
|
import Button from '../button'
|
|
import Text from '../text'
|
|
import ModalLayout from './modal_layout'
|
|
|
|
const messages = defineMessages({
|
|
|
|
})
|
|
|
|
export default
|
|
@injectIntl
|
|
class EditProfileModal extends ImmutablePureComponent {
|
|
|
|
static propTypes = {
|
|
intl: PropTypes.object.isRequired,
|
|
}
|
|
|
|
render() {
|
|
const { intl } = this.props
|
|
|
|
return (
|
|
<ModalLayout>
|
|
</ModalLayout>
|
|
)
|
|
}
|
|
}
|