UNPKG

@blocklet/ui-react

Version:

Some useful front-end web components that can be used in Blocklets.

17 lines (16 loc) 746 B
import { BoxProps } from '@mui/material'; export default function UserCenter({ children, notLoginContent, currentTab, contentProps, disableAutoRedirect, hideFooter, headerProps, footerProps, userDid, stickySidebar, embed, onlyProfile, }: { readonly children: any; readonly notLoginContent?: any; readonly currentTab: string; readonly contentProps?: BoxProps; readonly disableAutoRedirect?: boolean; readonly autoPopupSetting?: boolean; readonly hideFooter?: boolean; readonly headerProps?: any; readonly footerProps?: any; readonly userDid?: string; readonly stickySidebar?: boolean; readonly embed?: boolean; readonly onlyProfile?: boolean; }): import("react/jsx-runtime").JSX.Element | null;