選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

useLoadOnMount.ts 343B

12345678910111213141516
  1. import { useEffect } from 'react'
  2. import state from 'state'
  3. export default function useLoadOnMount() {
  4. useEffect(() => {
  5. const fonts = (document as any).fonts
  6. fonts
  7. .load('12px Verveine Regular', 'Fonts are loaded!')
  8. .then(() => state.send('MOUNTED'))
  9. return () => {
  10. state.send('UNMOUNTED')
  11. }
  12. }, [])
  13. }