dbug fe: include missing component

This commit is contained in:
Fang 2020-05-11 20:37:52 +02:00
parent c991e17871
commit fe2e3861bb
No known key found for this signature in database
GPG Key ID: EB035760C1BBA972

View File

@ -0,0 +1,15 @@
import React, { Component } from 'react';
export class MessageScreen extends Component {
render() {
return (
<div className="h-100 w-100 overflow-x-hidden flex flex-column bg-white bg-gray0-d dn db-ns">
<div className="pl3 pr3 pt2 dt pb3 w-100 h-100">
<p className="f8 pt3 gray2 w-100 h-100 dtc v-mid tc">
{this.props.text}
</p>
</div>
</div>
);
}
}