22 lines
460 B
TypeScript
22 lines
460 B
TypeScript
|
|
"use client";
|
||
|
|
|
||
|
|
import { AntdRegistry } from "@ant-design/nextjs-registry";
|
||
|
|
import { App, ConfigProvider } from "antd";
|
||
|
|
|
||
|
|
export function Providers({ children }: { children: React.ReactNode }) {
|
||
|
|
return (
|
||
|
|
<AntdRegistry>
|
||
|
|
<ConfigProvider
|
||
|
|
theme={{
|
||
|
|
token: {
|
||
|
|
colorPrimary: "#1677FF",
|
||
|
|
borderRadius: 6,
|
||
|
|
},
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
<App>{children}</App>
|
||
|
|
</ConfigProvider>
|
||
|
|
</AntdRegistry>
|
||
|
|
);
|
||
|
|
}
|