mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57:52 +01:00
Add first version of roadmap
This commit is contained in:
19
app/javascript/components/Roadmap/PostListItem.tsx
Normal file
19
app/javascript/components/Roadmap/PostListItem.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import * as React from 'react';
|
||||
|
||||
import '../../stylesheets/components/Roadmap/PostListItem.scss';
|
||||
|
||||
interface Props {
|
||||
title: string;
|
||||
boardName: string;
|
||||
}
|
||||
|
||||
const PostListItem = ({title, boardName}: Props) => (
|
||||
<a href="#" className="postLink">
|
||||
<div className="postListItem">
|
||||
<div className="postTitle">{title}</div>
|
||||
<div className="postBoard">{boardName}</div>
|
||||
</div>
|
||||
</a>
|
||||
);
|
||||
|
||||
export default PostListItem;
|
||||
Reference in New Issue
Block a user