import * as React from 'react'; import NewPost from './NewPost'; import PostList from './PostList'; import IBoard from '../../interfaces/IBoard'; import '../../stylesheets/components/Board/Board.scss'; interface Props { board: IBoard; isLoggedIn: boolean; authenticityToken: string; } class Board extends React.Component { render() { const { board, isLoggedIn, authenticityToken } = this.props; return (
); } } export default Board;