mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
14 lines
419 B
JavaScript
14 lines
419 B
JavaScript
import React from "react"
|
|
import BoxFullScrollable from "../base/BoxFullScrollable"
|
|
import SummaryTweet from "./SummaryTweet"
|
|
|
|
|
|
export default function BoxRepositoryTweets({ tweets, ...props }) {
|
|
// TODO: Translate this
|
|
|
|
return (
|
|
<BoxFullScrollable header={"Tweets"} {...props}>
|
|
{tweets.map(tweet => <SummaryTweet key={tweet.snowflake} tweet={tweet}/>)}
|
|
</BoxFullScrollable>
|
|
)
|
|
}
|