diff options
| author | 2019-09-14 14:22:58 -0300 | |
|---|---|---|
| committer | 2019-09-14 14:22:58 -0300 | |
| commit | 483924210d3ee109ad1bded460effc6f4d4ccad4 (patch) | |
| tree | caecba67cbba39f85a8bb8d380310b253b1cc5b2 /src/BBSThread.js | |
| parent | 7d7711e4a3d714b2c1df98a0792cab0549a27046 (diff) | |
| download | bai-client-483924210d3ee109ad1bded460effc6f4d4ccad4.tar.gz bai-client-483924210d3ee109ad1bded460effc6f4d4ccad4.tar.xz bai-client-483924210d3ee109ad1bded460effc6f4d4ccad4.zip | |
Reply form
Diffstat (limited to 'src/BBSThread.js')
| -rw-r--r-- | src/BBSThread.js | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/src/BBSThread.js b/src/BBSThread.js index e54588b..dd220ce 100644 --- a/src/BBSThread.js +++ b/src/BBSThread.js @@ -3,7 +3,7 @@ import { Header, Icon, Loader, Message, Segment } from "semantic-ui-react";  import Moment from "react-moment";  import "moment/locale/es";  import Post from "./Post"; - +import ReplyForm from "./ReplyForm";  class BBSThread extends Component {      constructor(props) { @@ -57,7 +57,7 @@ class BBSThread extends Component {              );          } -        const { posts, subject, timestamp, total_replies, locked } = this.state.thread; +        const { posts, subject, timestamp, total_replies, locked, id } = this.state.thread;          return (              <div> @@ -83,6 +83,8 @@ class BBSThread extends Component {                  )                  } +                <ReplyForm dir={this.props.dir} parent={id} /> +                  <a href={`https://bienvenidoainternet.org/cgi/api/thread?dir=${this.props.dir}&id=${this.props.id}`}>API Link</a>              </div>);      } | 
