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