Skip to content

3.0.0

Latest
Compare
Choose a tag to compare
@KushibikiMashu KushibikiMashu released this 27 Jun 03:28
· 1 commit to main since this release

breaking

  • change absolute import

Changed path to import modules under the src directory. When you use src/hooks/useCounter in React component, you must write @/hools/useCounter instead of ~/src/hooks/useCounter.

For example:

// before
import useCounter from '~/src/hooks/useCounter'
// after
import useCounter from '@/hooks/useCounter'

chore

  • solve a storybook warning
  • refactor: move style.css to assets
  • fix command on commit