This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component, PropType } from 'react'; | |
import { ListGroup, ListGroupItem, Grid, Row, Input } from 'react-bootstrap'; | |
import Channels from './Channels'; | |
export default class App extends Component { | |
static defaultProps = { | |
channels: [ | |
"reactjs", | |
"general", | |
"random", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component, PropType } from 'react'; | |
import CommentList from './CommentList'; | |
import CommentForm from './CommentForm'; | |
import comments from './Comments'; | |
export default class App extends Component { | |
render() { | |
return ( | |
<div> | |
<h1>Comments</h1> |
NewerOlder