import React from 'react'; /** * A placeholder Message component, giving the structure of a plain message with none of * the dynamic functionality. We can build off of this going forward. */ export class Message extends React.Component<{}, {}> { public render() { return (
  • Hi there. How are you doing? Feeling pretty good? Awesome.

    1 minute ago
  • ); } }