13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import React from 'react'
|
|
import { Button } from '@zhst/meta'
|
|
import { useThrottleFn } from '@zhst/hooks'
|
|
|
|
export default () => {
|
|
|
|
const { run } = useThrottleFn(() => console.log('123'))
|
|
|
|
return (
|
|
<Button onClick={() => run()} >测试</Button>
|
|
)
|
|
}
|