Skip to content
Snippets Groups Projects
Unverified Commit fce14ee1 authored by balibabu's avatar balibabu Committed by GitHub
Browse files

feat: add loading to ChatContainer and set font family to inter and add...

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
parent 69995981
No related branches found
No related tags found
No related merge requests found
Showing
with 14 additions and 2 deletions
......@@ -12,11 +12,13 @@ export default defineConfig({
icons: {},
hash: true,
favicons: ['/logo.svg'],
clickToComponent: {},
history: {
type: 'browser',
},
plugins: ['@react-dev-inspector/umi4-plugin', '@umijs/plugins/dist/dva'],
dva: {},
lessLoader: {
modifyVars: {
hack: `true; @import "~@/less/index.less";`,
......
import { ConfigProvider } from 'antd';
import React, { ReactNode } from 'react';
import { Inspector } from 'react-dev-inspector';
export function rootContainer(container: ReactNode) {
return React.createElement(Inspector, null, container);
return React.createElement(
ConfigProvider,
{
theme: {
token: {
fontFamily: 'Inter',
},
},
},
container,
);
}
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
File added
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment