import React from 'react'; import classNames from 'classnames'; import { withStyles } from '@material-ui/core/styles'; import Button from '@material-ui/core/Button'; import Dialog from '@material-ui/core/Dialog'; import './terms.css'; const styles = theme => ({ button: { margin: theme.spacing.unit, borderRadius: '4px', backgroundColor: 'rgba(67, 96, 223, 0.1)', } }); const buttonText = { color: '#4360df', margin: '0 20px', fontWeight: 300 }; const Terms = ({ classes, open, onSubmit }) => (

Terms of name registration

These terms are guaranteed by the smart contract logic at addresses:

); export default withStyles(styles)(Terms);