ragflow/web/src/app.tsx

17 lines
304 B
TypeScript
Raw Normal View History

import { ConfigProvider } from 'antd';
import React, { ReactNode } from 'react';
export function rootContainer(container: ReactNode) {
return React.createElement(
ConfigProvider,
{
theme: {
token: {
fontFamily: 'Inter',
},
},
},
container,
);
}