@neo-skeuo/refine
v1.1.2
Published
Neo-skeuo Refine + Ant Design root shell
Maintainers
Readme
@neo-skeuo/refine
Neo-skeuo admin shell for Ant Design 5, with an optional Refine (@refinedev/core) wrapper.
npm install @neo-skeuo/refine @neo-skeuo/web-css antd react react-dom
# Optional Refine wrapper:
npm install @refinedev/coreNeoRefineRoot
Themed Ant Design only — no Refine dependency required at runtime if you only import this:
import { NeoRefineRoot } from "@neo-skeuo/refine";
import "@neo-skeuo/web-css/index.css";
import "@neo-skeuo/web-css/antd/index.css";
<NeoRefineRoot theme="light">
<YourApp />
</NeoRefineRoot>NeoRefineApp
When using Refine, wrap your app with NeoRefineApp and pass refine props:
import { NeoRefineApp } from "@neo-skeuo/refine";
<NeoRefineApp theme="light" refine={{ /* RefineProps */ }}>
<YourRoutes />
</NeoRefineApp>Requires @refinedev/core as a peer dependency.
NeoAdminLayout
Optional header / sider slots for admin chrome. Pair with Ant Design Layout and Menu in your app.
See docs/recipes/react-refine-admin.md.
