ragflow/web/src/app.tsx
balibabu fce14ee187
feat: add loading to ChatContainer and set font family to inter and add tooltip to Form.Item and download documents on the document list page (#136)
* feat: download documents on the document list page

* feat: add tooltip to Form.Item

* feat: set font family to inter

* feat: add loading to ChatContainer
2024-03-20 18:20:42 +08:00

16 lines
304 B
TypeScript

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