A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/app/components/modal/modal-content/modal-content.component.js

32 lines
680 B

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">
{
title && (
<div className="modal-content__title">
{ title }
</div>
)
}
{
description && (
<div className="modal-content__description">
{ description }
</div>
)
}
</div>
)
}
}