UNPKG

@wufengteam/wform

Version:

@wufengteam/wform

12 lines (11 loc) 250 B
import type { FC } from 'react'; import './Nav.less'; interface NavProps { left?: string; title?: string; right?: string; onLeftClick?: () => void; onRightClick?: () => void; } declare const Nav: FC<NavProps>; export default Nav;