Skip to content

Instantly share code, notes, and snippets.

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",
@renren89
renren89 / App.jsx
Last active September 25, 2015 14:08
CommentBox
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>