balibabu
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)
84f80c5
import { ConfigProvider } from 'antd'; | |
import React, { ReactNode } from 'react'; | |
export function rootContainer(container: ReactNode) { | |
return React.createElement( | |
ConfigProvider, | |
{ | |
theme: { | |
token: { | |
fontFamily: 'Inter', | |
}, | |
}, | |
}, | |
container, | |
); | |
} | |