mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +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; |