LoginSignup
0
0

More than 1 year has passed since last update.

not found in 'date-fns'が出た

Posted at

前提

  • yarnを導入している
  • rails6

概要

$ yarn add date-fns

をした後に、

// sample.js

import format from 'date-fns'

こうすると、以下のエラーが出る

"export 'default' (imported as 'format') was not found in 'date-fns'

結論

// sample.js

import { format } from 'date-fns'

{}が必要らしい

date-fns側で名前付きエクスポートをしているため、このように書く必要があるっぽい。

参考

export - JavaScript | MDN

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