import React from 'react'; /** * A placeholder Message component for now, giving the structure of a plain message with * none of the dynamic functionality. This page will be used to build up our corpus of * permutations before we start moving all message functionality to React. */ export class Message extends React.Component<{}, {}> { public render() { return (
  • Hi there. How are you doing? Feeling pretty good? Awesome.

    1 minute ago
  • ); } }