ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
618 B

  1. import type { FC } from 'react'
  2. type Props = {
  3. userId: string
  4. statusId: string }
  5. export default (({ userId, statusId }: Props) => {
  6. const now = (new Date).toLocaleDateString ()
  7. return (
  8. <div>
  9. <blockquote className="twitter-tweet">
  10. <p lang="ja" dir="ltr">
  11. Loading...
  12. </p>
  13. — <a href={`https://twitter.com/${ userId }?ref_src=twsrc%3Etfw`}>@{userId}</a> <a href={`https://twitter.com/${ userId }/status/${ statusId }?ref_src=twsrc%5Etfw`}>{now}</a>
  14. </blockquote>
  15. <script async src="https://platform.twitter.com/widgets.js" charSet="utf-8"/>
  16. </div>)
  17. }) satisfies FC<Props>