date-fns
format( new Date(createdAt), 'yyyy年MM月dd日')
2020-02-22T09:46:02.014Z →2020年02月22日
yyyyは大文字だとエラーになる
やりたいこと
Date型の文字列を、年、月、日にわけたい
以下の感じでやりたい
code:ts
const {day, month, year} = format(new Date(), '2018-2-3')
getDate, getMonth, getYearを個別に使っていく感じか