0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

React 使用したことのあるライブラリ

Last updated at Posted at 2021-01-30

react-twitter-widgets

https://github.com/andrewsuzuki/react-twitter-widgets
twitterのスクレイピングやシェアボタンの作成で使用。react-twitter-embedの方はドキュメントが充実しているがtypescriptで使えなさそうだったため使用を断念。
実際に書いたコード

sample.tsx
<Tweet tweetId="表示させたいツイートのID" />
<Timeline
  dataSource={{
    sourceType: 'profile',
    screenName: '表示させたいユーザーの名前(@から始まる方)',
  }}
  options={{
    height: '400',
  }}
/>
<Share
  url="シェアツイートに載せたいurl"
  options={{ text: 'シェアツイートに載せたい文章', via: 'シェアツイートをするユーザーの名前' }}
/>

react-flip-move

アニメーションをつけるためのライブラリ。
https://github.com/joshwcomeau/react-flip-move

dayjs

日付の取得や操作を簡単に行えるライブラリ。
https://day.js.org/docs/en/display/format

material-ui-pickers

日付選択の立地なUIを簡単に作成出来る。
https://material-ui-pickers.dev/

DatePickerを使用した。
https://material-ui-pickers.dev/demo/datepicker

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?