dev-dashboard
v3.0.0
Published
local debugging dashboard
Downloads
32
Readme
introduce
为产生本地 💻 调试环境,提效 🚀 而二次封装的 Dashboard。
usage
单路由极简风格
import { Simple } from "dev-dashoard";
<Simple />
Props
type SimpleProps = {
title?: string;
useHash?: boolean; // 是否使用 hash 模式
routes: Array<{
name: string
icon: React.ReactNode
path: string
component: React.FunctionComponent | React.ComponentClass
}>
}
;