Skip to content

Instantly share code, notes, and snippets.

View strobox's full-sized avatar
🌐
Working on open source

strobox

🌐
Working on open source
View GitHub Profile
import React, { Component } from 'react';
import Formous from 'formous';
class ErrorText extends Component {
render() {
return <div style={{ color: '#f00' }}>
{this.props.errorText}
</div>
}
}