import { Button } from 'antd' import IonIcon from '@sentre/antd-ionicon' import { useGoToStore } from 'hooks/useGotoStore' export type MoreProps = { size?: number visible?: boolean } const MoreApp = ({ size = 32, visible = false }: MoreProps) => { const onGoToStore = useGoToStore() return ( ) } export default MoreApp