mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 11:17:49 +01:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
|
||
|
|
import '../../stylesheets/components/Board/PostList.scss';
|
||
|
|
|
||
|
|
const PostList = () => (
|
||
|
|
<div className="postListContainer">
|
||
|
|
Posts will be show here.
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
|
||
|
|
export default PostList;
|