Appearance
import { useRefresh } from "@lite-code/pro-shineout"; import { Button } from 'shineout'; export default () => { const refresh = useRefresh(); return ( <div> <Button onClick={refresh}>刷新</Button> now: {Date.now()} </div> ); };