Skip to content

kunlunjs/goldwheel-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gold Wheel React

Showcasing Best Practices For Building React Applications

NOTE

利用 useMutation 封装自定义 hook

export const useSignUp = <T extends string>() => {
  return useMutation<SuccessResponse, ErrorResponse<T>, Record<T, string>>(...)
}

hook useEcharts usage

import { useECharts } from '@/hooks/useECharts'
function Example() {
  const [echartRef] = useECharts({
    //options...
  })

  return <div ref={echartRef} className="h-96 w-96" /> // <div ref={echartRef} style={{ width: 400, height: 400 }} />
}

TODO

  • fix: pnpm e2e and e2e:headless
  • vitest intersection observer polyfill

Reference Link